c++ program...

i need to create a program that will convert numbers into words...
example input: 1
output: one

100 inputs...



tnx!
1
2
if( num == 1 )
   cout << "one";
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!
tnx a lot..^^
Topic archived. No new replies allowed.