对于Test.java,下列叙述正确的是()。public class Test{public static void main(String args[]){boolean boo=false;if(boo==true){System.out.print("hello");System.out.print("你好");}else{System.out.print("ok");System.out.print("yes");}}}
A. 出现编译错误
B. 程序的输出结果是hello 你好
C. 程序的输出结果是ok
D. 程序的输出结果是okyes
查看答案
对于"int n=6789;",表达式的值为7的是()。
A. n%10
B. n/10%10
C. n/100%10
D. n/1000%10
下列代码中,( )替换程序中标注的【代码】会使得程序输出hello。public class Test{public static void main(String args[]){int m=0;if(【代码】){System.out.println("您好");}else{System.out.println("hello");}}}
A. m--<=0
B. ++m>0
C. m++>0
D. --m<0
假设有"int x=1;",下列代码中,( )将导致“可能损失精度,找到int需要char”这样的编译错误。
A. short t=12+'a';
B. char c='a'+1;
C. char m='a'+x;
D. byte n='a'+1;
阅读下列代码,( )选项正确。1 public class Test{2public static void main(String args[]){3byte b='a';4int n=100;5char c=65;6b=b;7b=b+1;8}9 }
A. 第4行错误
B. 第5行错误
C. 第6行错误
D. 第7行错误