この Java ファイルのコンパイルに問題があります。その問題が何であるか理解できません。エクリプス 言う
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10
at ll.ln.main(ln.java:11)"
ディレクトリは次のとおりです。
コードは次のとおりです。
package ll;
public class ln {
public static void main(String arguments[]) {
String[] pharse={"here i am ","ther you are",
"nobody movewho is in charge here",
"haven dosent far away"};
for (int count=0;count<=pharse.length;count ++){
String courenttext=pharse[count];
char[] chcs=courenttext.toCharArray();
int[] ln=new int[26];
for(int i=0;i<=chcs.length;i++){
if((chcs[i]>'z')||(chcs[i]<'a'))
continue;
ln[chcs[i]-'a'] ++;
}
for (int i=0;i<27;i++){
char t='a';
t+=i;
System.out.println(t +": "+ln[i]+" ");
}
}
}
}