为什吗会这样?再着么也不应该出现imooc吧
为什么把错误改正后,结果还是错误的?而且有时把标准答案放上去也会显示有错????
可以看看我的代码
public class HelloWorld{
public static void main(String[] args) {
int a=16;
double b=9.5;
String str1="hello";
String str2="imooc";
System.out.println("a等于b:" + (a==b));
System.out.println("a大于b:" + (a>b));
System.out.println("a小于等于b:" + (a<=b));
System.out.println("str1等于str2:" + (str1==str2));
}
}
==
。
一个等号是赋值运算,双等号才是逻辑运算。