我试图做一个程序,将一个字符串读取和字符串中的每个字符比较,看看它是否是按字母顺序排列。
public class Main
{
public static void Main ( String[] args)
{
System.out.println("#Please enter the string: ");
String s = BIO.getString();
while(!s.equals("END")){
int length = s.length();
String sLC = s.toLowerCase();
int count = 0;
boolean inOrder = true;
for(int i = 0; i < length - 1 ; i++){
if(sLC.charAt(i).compareTo(sLC.charAt(i+1)) > 0) {
inOrder = false;
break;
}
}
System.out.println("#Please enter the string: ");
s = BIO.getString();
}
}
}
我使用BlueJ的,当我尝试编译此它给我的错误“字符无法提领,并强调了‘在我的IF语句的compareTo’方法?