Java プログラムに問題があります。コードの 16 行目 ( t = T[i];
) にエラーがあり、これは 12 行目のエラーを意味します。次のように書かれています。
Syntax error on token "=",VariableInitializer expected after this token.
助けてもらえますか?
public class Ngrams {
public static boolean estPrefixe(String t, String s) {
int Longs = s.length();
if (t.substring(0, Longs) == s) {
return true;
} else {
return false;
}
}
public static int nbOccurences(String[] T, String s) {
int compteur = 0;
String t = null;
for (int i = 0; i < T.length; i++) {
t = T[i];
if (estPrefixe(t, s)) {
compteur++;
}
return compteur;
}
}