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