9.1 下列程序运行的结果是( )for(int i=0;i<5;i+=2) {System.out.print(i);}
A. 012345
B. 01234
C. 024
D. 246
E. 123
查看答案
9.2在下面循环语句中循环体执行的次数为()int n=10;for(int i=0; in/2) break;
A. n/2
B. n/2+1
C. n/2+2
D. n
9.3下列程序运行的结果是()int i=11;while(i>=0)if(i--%3==0) continue;else System.out.print(i--);
A. 9630
B. 14721
C. 1074
D. 10741
9.1读程序写出运行结果publicclasst{publicstaticvoidmain(String[]args){intweek=3;while(week>0){switch(week){case1:System.out.println("星期一");case2:System.out.println("星期二");break;default:System.out.println("其他");}week--;}}}
9.2读程序写出运行结果publicclassDemo{publicstaticvoidmain(String[]args){for(intmonth=3;month<=12;month=month+3){switch(month/3){case1:{System.out.println("第一季度");break;}case2:{System.out.println("第二季度");break;}case3:{System.out.println("第三季度");break;}default:System.out.println("第四季度");}}}}