题目内容

挑错题:A、B、C、D注释标注的哪行代码有错误?public class Test030303 {public static void main(String[] args) {int m=1000;while(m>100)//A{m=m--;//Bif(m==600){//Ccontinue;m++;//D}}}}

A
B
C
D

查看答案
更多问题

阅读程序题(给出【代码】注释标注的代码的输出结果)public class Test31 {public static void main(String args[ ]){boolean boo = false;int x = -1 ;boo = ( ( x=10)>9) || ((x=100)>99);System.out.println(boo+"hello"+x);// 【代码】}}

阅读程序题(给出【代码】注释标注的代码的输出结果)public class Test32 {public static void main(String args[ ]){boolean boo = false;int x = -1 ;boo = ( ( x=10)>9) | ((x=100)>99);System.out.println(boo+"hello"+x);// 【代码】}}

阅读程序题(给出【代码】注释标注的代码的输出结果)public class Test33 {public static void main(String args[ ]){int m=123;int sum=0,t=100;while ( t>0 ){sum=sum+m%10*t;m=m/10;t=t/10;}System.out.printf("%d",sum); //【代码】}}

阅读程序题(给出【代码】注释标注的代码的输出结果)public class Test34 {public static void main(String args[ ]){int m = 0 ;char ch ='A';switch(ch){case 9:case 'a' : m=m+1;break;case 'A' : m=m+1;case 66 : m=m+1;default : m=m+3;}System.out.println(m); //【代码】}}

答案查题题库