下面代码段的输出是( )。A.编译出错B.5752C.trueD.无任何输出
下面代码段的输出是( )。
A.编译出错
B.5752
C.true
D.无任何输出
相关考题:
运行下列代码后,正确的结果为: public class Test { static int age; public static void main (String args []) { age = age + 1; System.out.println("age=" + age); } }A.编译运行后无任何输出B.编译运行后输出 age=1C.编译运行后输出 age=0D.编译出错
运行下列代码后,正确的结果为: public class Test { static int age; public static void main (String args []) { age = age + 1; System.out.println("age=" + age); } }A.编译运行后输出 age=0B.编译运行后输出 age=1C.编译出错D.编译运行后无任何输出