1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
#include <iostream>
using namespace std;
void ones(int x)
{
switch (x) {
case 1:
cout << "one";
break;
case 2:
cout << "two";
break;
case 3:
cout << "three";
break;
case 4:
cout << "four";
break;
case 5:
cout << "five";
break;
case 6:
cout << "six";
break;
case 7:
cout << "seven";
break;
case 8:
cout << "eight";
break;
case 9:
cout << "nine";
break;
}
cout << " ";
}
void tens(int x)
{
switch (x) {
case 1:
cout << "ten";
break;
case 2:
cout << "twenty";
break;
case 3:
cout << "thirty";
break;
case 4:
cout << "forty";
break;
case 5:
cout << "fifrty";
break;
case 6:
cout << "sixty";
break;
case 7:
cout << "seventy";
break;
case 8:
cout << "eighty";
break;
case 9:
cout << "ninety";
break;
}
cout << " ";
}
void hundreds(int x)
{
ones(x);
cout << "hundred ";
}
void format(int n)
{
int a, b, c, d, e, f, g, h, t;
//Separate numbers in millions, hundreds of thousands, tens of thousands, thousands, hundreds, tens, and units
a = n % 10; // 1
b = (n / 10) % 10; // 10
c = (n / 100) % 10; // 100
d = (n / 1000) % 10; // 1,000
e = (n / 10000) % 10; // 10,000
f = (n / 100000) % 10; // 100,000
g = (n / 1000000) % 10; // 1,000,000
h = (n / 10000000) % 10; // 10,000,000
t = (n / 100000000) % 10; // 100,000,000
if (t || h || g)
{
if (t)
hundreds(t);
if (h)
tens(h);
if (g)
ones(g);
cout << "millions ";
}
if (f || e || d)
{
if (f)
hundreds(f);
if (e)
tens(e);
if (d)
ones(d);
cout << "thousands ";
}
if (c)
hundreds(c);
if (b)
tens(b);
if (a)
ones(a);
cout << endl;
}
int main()
{
int n;
do
{
cout << "Input a 9 digit positive (0 to stop): ";
cin >> n;
if (n)
format(n);
} while (n);
return 0;
}
|