Analyze the following code.int x = 1;while (0 < x) && (x < 100)System.out.println(x++);
A. The code does not compile because (0 < x) && (x < 100) is not enclosed in a pair of parentheses.
B. The numbers 2 to 100 are displayeD.
C. The code does not compile because the loop body is not in the braces.
D. The numbers 1 to 99 are displayeD.