看不出來哪里錯了
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));
}
}
2018-09-14
英文的大于小于
2018-09-09
不是,必須用英文的大于等于
2018-09-08
應該是網站的問題,我的和你的一樣,運行就可以
2018-08-14
這個網站有時候就會顯示錯誤 點開運行結果會出現 timeout 多試兩次就好了
2018-08-13
沒錯,應該是網站緩存問題
2018-08-10
最后少了一個“}”,總共是三個