文字列を読み取り、文字列内の各文字を比較してアルファベット順かどうかを確認するプログラムを作成しようとしています。
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 を使用していますが、これをコンパイルしようとすると、「char を逆参照できません」というエラーが表示され、IF ステートメントで「compareTo」メソッドが強調表示されますか?