以下哪句不能编译?
举一反三
- 以下哪句不能编译? A: if ( a==b ) else printf("no"); B: if ( a==b ); else printf("no"); C: if ( a==b ) {} else printf("no"); D: if ( a==b ) printf("no");
- 以下哪句不能编译? A: if ( a==b ) else System.out.println("no"); B: if ( a==b ); else System.out.println("no"); C: if ( a==b ){} else System.out.println("no"); D: if ( a==b ) System.out.println("no");
- 以下代码片段: String s1 = "hello"; String s2 = "hello"; System.out.println(s1 == s2);以下哪句是正确的? A: 输出“true” B: 输出“false” C: 不能编译 D: 运行时刻出现异常
- 以下哪句不能编译? A: if ( a==b ) else printf("no"); B: if ( a==b ); else printf("no"); C: if ( a==b ) {} else printf("no"); D: if ( a==b ) printf("no");
- 以下( )for语句是不能编译的?