0
I need help!
How many "Hooray" will be printed onto screen? int count = 10; while (count>=10){ System.out.println("Hooray!"); ++count; }
3 ответов
+ 2
Amir Gadzhiev
See in code playground.
+ 1
"Hooray" will be printed 4294967286 times. As the value of count increased by 1 each time it will be not stopped until the count value reaches 2³² - 1.
0
10000000000000000