单项选择题
有如下程序
public class Test
int a,b;
Test ( )
a = 100;
b = 200;
Test(int x, int y)
a = x;
b = y;
public static void main(String args[])
Test Obj1 = new Test(12,45);
System.out.println("a = "Obj1.a+" b = "+Ob31.B) ;
Test Obj1 = new Test();
System.out.println("a = "Obj1.a+" b = "+Obj1.B) ;
程序的运行结果为( )。
A.a=100 b=200
a=12 b=45
B.a=12 b=45
a=100 b=200
C.a=12 b=200
a=100 b=45
D.a=100 b=45
a=12 b=200
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有如下程序 public class Sun public static void main(String args[ ]) int x=1,a=0,b=0; switch(x) case 0:b++; case 1:a++; case 2: a++; b++; System.out.println( a= +a+ , + b= +B) 该程序的输出结果是( )。
A.a=2,b=1
B.a=1,b=1
C.a=1,b=0
D.a=0,b=0
点击查看答案&解析
单项选择题
执行以下的循环后输出的值为( )。 public class Sun public static void main (String args[ ]) int m=1000, s=0, n=0; do n=n+l; s=s+(int)Math.pow(2,n); while (s<=m); System.out.println( n= +n+ , + s= +s);
A.n=9, s=1000
B.n=8, s=1022
C.n=9, s=1022
D.n=8, s=1000
点击查看答案&解析
相关试题
有以下程序 public class Sun public ...