【单选题】What is the output of the following code? public class Test{ public static void main(String[] args){ int x = 80000000; while (x > 0) x++; System.out.println("x is " + x); } }
【单选题】Assume x is 0. What is the output of the following statement? if (x > 0) System.out.print("x is greater than 0"); else if (x < 0) System.out.print("x is less than 0"); else System.out.print("x equals ...