Computer Science, asked by kraghaver, 1 year ago

How many times will the following while loop run?

int x = 200; while (x >= 0) { System.out.print(2 * x + " "); x /= x; }

7

Infinite

3

0

Answers

Answered by mayankpal2
1
it is infinite following
Similar questions