c++ program...

Aug 31, 2008 at 12:13pm
i need to create a program that will convert numbers into words...
example input: 1
output: one

100 inputs...



tnx!
Aug 31, 2008 at 12:17pm
1
2
if( num == 1 )
   cout << "one";
Aug 31, 2008 at 3:06pm
No one here will write it for you (unless you can affort to hire one of us). If you google "convert number to words c c++" you'll get some pretty good hits.

Good luck!
Sep 1, 2008 at 9:53am
tnx a lot..^^
Topic archived. No new replies allowed.