0
Looping
BUG BUSTERS: What is wrong with this code? int counter = 0; while (counter < 10) { cout << “counter: “ << counter; }
1 ответ
+ 1
0
You don`t have "counter" to increment and then your code will be infinite loop.
Correct Answer :
int counter = 0;
while (counter < 10)
{
cout << “counter: “ << counter;
counter++;
}
Hope to help you!