下列输出结果是()。int a = 0 ;while ( a < 5 ) {switch(a){case 0:case 3 : a = a + 2;case 1 :case 2 : a = a + 3;default : a = a + 5;}}System.out.print ( a ) ;
查看答案
已知如下代码:switch(m){case 0:System.out.println("Condition 0");case 1:System.out.println("Condition 1");case 2:System.out.println("Condition 2");case 3:System.out.println("Condition3");break;default:System.out.println("OtherCondition"); }当m的值为()时,能输出“Condition 3”
A. 2
B. 0,1
C. 0,1,2
D. 0,1,2,3
关于 for循环和 while循环的说法哪个正确?()
A. while循环先判断后执行,for循环先执行后判断。
B. 当循环次数固定时,用for更简洁。
C. 两种循环任何时候都不可以替换
D. 两种循环结构中都必须有循环体,循环体不能为空
下面的程序的运行结果是()。public class Test {public static void main(String[] args) {for(int x = 0 ; x <=3 ; x++){continue;System.out.print(x%2);}}}
A. 跳出循环,无输出
B. 0121
C. 01
D. 0123
下面程序的运行结果是()。public class Test {public static void main(String[] args) {int temp = 0;for (int i = 1; i < 5; i++) {for (int j = 0; j < i; j++) {temp++;}}System.out.println(temp);}}
A. 5
B. 9
C. 10
D. 15