How many times will the loop iterate, if the input is 105 107 99 103?
x = scnr.nextInt();
while (x > 100) {
// do something
x = scnr.nextInt();
}
a) 1
b) 3
c) 2
d) 4

Respuesta :

b, 3 becUse if the input js 105,107,99,103 then its b, 3.