下面语句的输出结果是System.out.println(49 % 26 % 5 % 1);
A. 23
B. 3
C. 1
D. 0
下面代码的输出结果是System.out.print(3 + 3 + "3");System.out.print(" and ");System.out.println("3" + 3 + 3 );
A. 333 and 333
B. 63 and 63
C. 333 and 63
D. 63 and 333
下面代码片段打印输出什么?int x = 10;x %= 6;System.out.println(x);
A. 1
B. 2
C. 3
D. 4
哪个不是Java基本类型?
A. long
B. bit
C. short
D. byte