パーセンテージの計算方法に問題がある(理解が不足している)。私は知る必要があります:
Q1。各文字の頻度(100から)のパーセンテージを取得するにはどうすればよいですか?また、
Q2。段落から最初の単語ごとに文字の頻度を取得するにはどうすればよいですか?
これまでの私のコードは次のとおりです。
import java.io.File;
import java.util.*;
import java.io.*;
public class LetterFrequency
{
public static void main(String[] args )
{
char[] capital = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J','K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
char[] small = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
Scanner scan;
try {
scan = new Scanner(new File("F:/programming principles/Programming Principles - PART B/enciphered.txt"));
} catch (Exception e) {
System.out.println("File not found");
return;
}
int[] count = new int[26];
while(scan.hasNextLine()) {
String line = scan.nextLine();
System.out.println("Line read: " + line);
char[] digit = line.toCharArray();
for(int i = 0; i < digit.length; i++) {
for(int j = 0; j < 26; j++) {
if(digit[i] == capital[j] || digit[i] == small[j]) {
count[j]++;
break;
}
}
}
}
System.out.println("");
System.out.println("Comlete count");
for (int i = 0; i < 26; i++)
{
System.out.print(" " + small[i]);
System.out.println(" " + count[i]);
//calculate percentage for the full count
}
}
}