このプログラムは、単語と文の最小の長さを尋ねます。プログラムの目的は、文字の長さの要件を満たす文の単語数を数えることです。誰かカウンターを手伝ってくれませんか、単語数が増えません。
public class wordcount {
public static void main(String[] args) {
int length = IO.readInt();
String sentence = IO.readString();
int full = sentence.length();
int wordcount = 0;
for(int i = 0; i == length; i++){
if(Character.isLetter(sentence.charAt(i)))
wordcount= wordcount + 1;
}
System.out.print(wordcount);
}
}