+ 3
How to check numbers are in non decreasing order using while loop
2 Respuestas
+ 2
and just change the number in the "while" loop to your number.
int i;
i = 1;
while( i <= 10 )
{
cout<<i;
i++
}
+ 1
by the way i am just a little girl