题目内容

挑错题:A、B、C、D注释标注的哪行代码有错误?public class Test030302 {public static void main(String[] args) {char ch='花';//Abyte n=-100;ch=ch-ch;//Bn=n;//Cn=127;//D}}

A
B
C
D

查看答案
更多问题

挑错题: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); //【代码】}}

答案查题题库