//assign_1_12_numberestowords.cpp
//Dishant Patel
//
//This program will take a number of maximum 5 digits, postive or negative, and display the number written out in words.
#include <iostream>
usingnamespace std;
int main()
{
cout << "Please enter an integer" << endl;
int num, numhund, numthou, numtenthou, numhundthou, numten;//the number is split into different values that represent each digit
cin>>num;
if (num<0)//ensures that if num is nugative, then it mentions that
{
cout<<"negative ";
num=-num;
}
numhundthou=num/100000;
num=num%100000;
numtenthou=num/10000;
if (numtenthou<2)
{
numthou=num%100;
}
else
{
num=num%10000;
numthou=num/1000;
}
num=num%1000;
numhund=num/100;
num=num%100;
numten=num/10;
if (numten>2)
{
num=num%10;
}
if((numthou!=0)||(numhundthou!=0)||(numtenthou!=0))
{
if (numhundthou!=0)
{
switch (numhundthou)//Case Values begin.
{
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<<"hundred " << endl;
}
if ((numtenthou>=1)&&(numtenthou<=9))
{
switch (numtenthou)
{
case 2:
cout<<"twenty ";
break;
case 3:
cout<<"thirty ";
break;
case 4:
cout<<"forty ";
break;
case 5:
cout<<"fifty ";
break;
case 6:
cout<<"sixty ";
break;
case 7:
cout<<"seventy ";
break;
case 8:
cout<<"eighty ";
break;
case 9:
cout<<"ninety ";
break;
cout<<" ";
break;
}
switch (numthou)
{
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<<" ";
break;
}
cout<<"thousand ";
}
if ((numtenthou!=0)&&(numtenthou<2))
{
switch(numthou)
{
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;
case 10:
cout<<"ten ";
break;
case 11:
cout<<"eleven ";
break;
case 12:
cout<<"twelve ";
break;
case 13:
cout<<"thirteen ";
break;
case 14:
cout<<"fourteen ";
break;
case 15:
cout<<"fifteen ";
break;
case 16:
cout<<"sixteen ";
break;
case 17:
cout<<"seventeen ";
break;
case 18:
cout<<"eighteen ";
break;
case 19:
cout<<"nineteen ";
break;
cout<<" ";
break;
}
cout<<"thousand ";
}
}
if(numhund!=0)
{
switch (numhund)
{
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<<" ";
}
cout<<"hundred ";
}
if ((numten>=2)&&(numten<=9))
{
switch (numten)
{
case 1:
cout<<"ten ";
break;
case 2:
cout<<"twenty ";
break;
case 3:
cout<<"thirty ";
break;
case 4:
cout<<"forty ";
break;
case 5:
cout<<"fifty ";
break;
case 6:
cout<<"sixty ";
break;
case 7:
cout<<"seventy ";
break;
case 8:
cout<<"eighty ";
break;
case 9:
cout<<"ninety ";
break;
cout<<" ";
break;
}
switch (num)
{
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<<" ";
break;
}
}
if ((num>=10)&&(num<=19))
{
switch (num)
{
case 10:
cout<<"ten ";
break;
case 11:
cout<<"eleven ";
break;
case 12:
cout<<"twelve ";
break;
case 13:
cout<<"thirteen ";
break;
case 14:
cout<<"fourteen ";
break;
case 15:
cout<<"fifteen ";
break;
case 16:
cout<<"sixteen ";
break;
case 17:
cout<<"seventeen ";
break;
case 18:
cout<<"eighteen ";
break;
case 19:
cout<<"nineteen ";
break;
}
}
return 0;
}
If someone figures out my mistake, please tell me. This is an assignment and I have been working on it for a day now, and its due tomorrow. Please help.
Er, you need to think harder about your assignment.
The idea that you break a number up into its pieces using the remainder and division operators was smart. However, you missed the part about not repeating code.
When you find yourself doing the same thing over and over again, look into loops, functions, and arrays.
To help you out, try writing out the numbers from one to one hundred and see if you can catch any patterns there. (Hint, the only exceptions occur when the tens place is '1'.)
Thank you for your reply Duoas, and I know what you mean, infact, a student asked the same thing, but the teacher wants us to do it this way so we can get our cases, breaks, and if statements pat down. If you could please tell me where the problem exists in line numbers, that would be great, because I looked it over many times, and everything looks good.
The first is all the conditions you are adding to to splitting the number up. Don't do that. Just go through a straightforward assignment of everything:
At this point, I would do a little processing of your values to help in the switches. Since the special cases occur when the tens place is one, just fix it thus:
1 2 3 4 5
if (numtenthou==1)
{
numtenthou=0;
numthou+=10;
}
Do you see the trick? Don't forget to handle 'numten' and 'num' the same way.
Now that you have a definite value for each of the decimal places (even if that value is zero), you can go through like you want. You only need to check to see that the item you are printing is not zero.
OK my friend. Thanks SO MUCH. I finally realized my mistake and it works perfectly. I'll send you a test case in a few, just gotta clean some stuff up.
Make sure you test for all the odd cases.
123456
213456
103456
120456
23456
etc
Head on over to my home page for the links I promised you. http://home.comcast.net/~michaelthomasgreer/links.html
Click on Fun with Numbers.
The "Numbers to Words Challenge" link is where we did this on the forum for really big numbers a while back.
Enjoy!
Here's the test case. I also made an addition of where the numbers can me only 6 digits max.
1 2 3 4 5 6 7 8 9 10 11 12
This program will write a number up to 6 digits in words.
Press Enter to continue.
Please enter the 6 digits.
1000000
That is an invalid entry. Please enter a valid number. Only 6 digits please.
-1000000
This is an invalid entry. Please enter a valid number. Only 6 digits please.
987541
Nine Hundred Eighty Seven Thousand Five Hundred Forty One
Process returned 0 (0x0) execution time : 17.361 s
Press any key to continue.