-3
文字cの出現回数を返します:は、どのように私はこれが私のコードである
public int frequency (char c)
{
int numOccurrences = 0;
String ltr = "letters";
ltr = ltr.toLowerCase();
for (int i = 0; i < ltr.length(); i++)
{
if (l.charAt(0) == l.charAt(1))
{
numOccurrences = numOccurrences + 1;
}
}
return numOccurrences;
}
public class TextAnalyser
{
private int letters; // the total number of letters analysed
private int[] frequencies; // the number of occurrences of each letter of the alphabet (case-insensitive)
// initialise the instance variables
public TextAnalyser()
{
this.letters = 0;
this.frequencies = new int[26];
}
public TextAnalyser(String initial)
{
this.letters = 0;
this.frequencies = new int [26];
this.analyse(initial);
}
}
コードをフォーマットしてください。 – Akah
私は知らないが、私はあなたのコードの半分が質問に欠けているように感じる。 – SomeJavaGuy
'if((c)== l.charAt(i)) { numOccurrences = numOccurrences + 1; } ' – ashwinbhy