我正在尝试制作一个程序,只要找到一个字符(用于检查'a'),它就会打印它并继续检查下一个字符。一直这样做,直到 word.length 结束。这是我到目前为止所做但不起作用的,
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter a word: ");
String word = in.next();
String a = "a";
int i;
char found = 0;
char F;
for (i = 0; i < word.length(); i++)
{
F = word.charAt(i);
if (F == found)
{
System.out.println(i);
}
}
}