Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: shayeshaye00 on May 5, 2020



Title: Analyze the following code.int x = 1;while (0 < x) && (x < 100) System.out.println(x++);
Post by: shayeshaye00 on May 5, 2020
Analyze the following code.

int x = 1;
while (0 < x) && (x < 100)
System.out.println(x++);


▸ The numbers 1 to 99 are displayed.

▸ The code does not compile because (0 < x) && (x < 100) is not enclosed in a pair of parentheses.

▸ The loop runs forever.

▸ The code does not compile because the loop body is not in the braces.

▸ The numbers 2 to 100 are displayed.


Title: Analyze the following code.int x = 1;while (0 < x) && (x < 100) System.out.println(x++);
Post by: RNIPP on May 5, 2020
Content hidden