以下语句中, 不能通过编译。
A: String s=“hello”+“student”;
B: String s="hello" +2020;
C: int a=3+5;
D: float=3+5.5;
A: String s=“hello”+“student”;
B: String s="hello" +2020;
C: int a=3+5;
D: float=3+5.5;
举一反三
- 在Java语言中,下列语句能通过编译的是()。 A: String s = "john" + " was " + " here"; B: String s = "john" + 3; C: int a = 3 + 5; D: int a = 5 + 5.5;
- 在Java中,下列语句不能通过编译的有( ) A: String s="join"+3; B: int a="join"+3; C: int a='a'+5; D: float f=5+5.5;
- 下面的哪些程序片断可能导致错误?( ) A: String s=”Hello”; String t=,,World"; String k=s+t; B: String s=,,Hello";String t;t=s[3]+"one"; C: String s="Hello,,;String standard = s.tollpperCase(); D: String s="Hello World”;String t=s-”World”;
- 若有语句String s="Hello, ";String t=s;s="Java! ";则t指向的字符串为()。 A: Hello, B: Java! C: Hello,Java! D: 都不对
- 以下要输出“hello,world!”正确的是? A: String s=String.format("%1s%2s","hello","world");System.out.println(s); B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s); C: String s=String.format("%s,%s","hello","world");System.out.println(s); D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);