write a code that converts integers 1-999 and displays them in words | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

write a code that converts integers 1-999 and displays them in words

pliz help me out

6th Aug 2016, 4:55 PM
KASAIJA KENNETH
KASAIJA KENNETH - avatar
2 Respostas
+ 2
be more specific? like example.
6th Aug 2016, 5:43 PM
Mr.Robot
Mr.Robot - avatar
0
To display them in words is too tedious. To display them in numbers, try this: for(int a = 1; a <= 999; a++) { cout << a << ", "; }
7th Aug 2016, 7:06 AM
Samuel Neo
Samuel Neo - avatar