单项选择题
有以下程序
public class Sun
public static void main(string args[ ])
int a, b;
for(a=1, b=1; a<=100; a++)
if(b>=10
break;
if (b%3 1)
b+=3;
continue;
System.cut.println(
A.;
执行后的输出结果是( )。A) 101
B.6
C.5
D.4
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有如下程序 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 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 ...
执行以下的循环后输出的值为( )。 publ...
有如下程序 public class Test int a...
若给下面的方法传入参数67时,输出结果为...
Java程序的执行方式是( )。