下列程序段的输出结果是 ( ) String MyStr="Hello,"; MyStr=MyStr+"World!"; System.out.println(MyStr);
A.Hello,World!
B.Hello.
C.World!
D.该程序段有语法错误
第1题:
此题为判断题(对,错)。
第2题:
此题为判断题(对,错)。
第3题:
对于下列程序,哪个叙述是正确的?() public class Test { public static void main(String[] args) { int m=100; if(m=100){ System.out.println("hello"); System.out.println("你好"); } else{ System.out.println("ok"); System.out.println("好的"); } } }
A.出现编译错误。
B.程序输出的结果是:ok好的
C.程序输出的结果是:ok
D.程序输出的结果是:hello你好
第4题:
此题为判断题(对,错)。
第5题:
此题为判断题(对,错)。