結果必須是大於「END」一詞的字符串。 這是我迄今爲止所做的,但它只是不工作。java語言中的更大字符串
System.out.println("Write a word. The word "END" terminates the program");
String word = sc.nextLine();
if(word.equals("END")){
System.out.println("Nothing has been typed");
}
while(word!="END"){
if(word.compareTo("END") > 0){
System.out.println(word+" is greater than END");
}
}
'字!= 「END」'應該是'! 「END」 .equals(字)'。 – dasblinkenlight 2013-02-26 16:30:54
你真的想做什麼?你的意思是比'END'更重要嗎? ENE是graterthan END。 ENC小於END。你在做什麼? – 2013-02-26 16:33:45
是@ThilinaHewagama – 2013-02-26 16:40:58