いくつかの助けを借りてコードをやり直しましたが、コンパイルしようとするとエラーが発生し続けます。エラー: 式の開始が不正です (17 行目)...矢印は joption コードの末尾を指しています。私はそれが私に何をしたいのか理解できません。コードは次のとおりです。
public class Project0 {
public static void main(String[] args) {
char uppercase = 'E';
char lowercase = 'e';
int isLower=0;
int isUpper =0;
String inputWord;
inputWord = JOptionPane.showInputDialog(null, "Please enter a sentence");
while (!inputWord.equals("stop"))
{
isLower = wordIsThere(inputWord, lowercase);
isUpper = wordIsThere(inputWord, uppercase);
JOptionPane.showMessageDialog(null, ("Number of " +inputWord+ " Lower: " +isLower+ "Upper: " +isUpper+));
inputWord = JOptionPane.showInputDialog(null, "Please enter a sentence or enter stop");
isUpper=0;//reset
isLower=0;
}//while ends here.
System.out.println("ENDS");
}//main
public static int wordIsThere(String findMe, char theLetter)
{
int count=0;
for (int i=0; i<findMe.length(); i++ )
if (findMe.charAt(i) == theLetter)
count++;
return count;
}
}