0
How to convert the following for loop code to a while loop code
1. for (int x=50 ; x >0 ; x--) 2. { 3. cout << x<< count<< "second to go \n"; 4. }
2 Answers
+ 1
int x = 50;
while(x>0)
{
cout << x << count << " second to go \n";
x--;
}
0
tq so much