在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="join"+3;
B: int a="join"+3;
C: int a='a'+5;
D: float f=5+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: double d=23.3; B: char c=’a’; C: int a= 3+5; D: float f=5+5.5;
- 在Java中,下列哪条语句会出现编译错误?() A: inta=3+5; B: Strings=“join”+3; C: floatf=5+5.5; D: Strings=“join”+“was”+“here”;
- 在Java中,下列选项不合法的赋值语句是____ A: float a=3/5; B: int b=3/5; C: float c=3/5.0; D: double d=3/5.0;
- 在java中,下列()语句不能通过编译。 A: AStrings="john"+"was"+"here"; B: BStrings="john"+3; C: Cfloatf=5+5.5; D: Dinta=3+5;