0
write a code that converts integers 1-999 and displays them in words
pliz help me out
2 Respuestas
+ 2
be more specific? like example.
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 << ", ";
}