1

パーセンテージの計算方法に問題がある(理解が不足している)。私は知る必要があります:

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
    }

  }
} 
4

4 に答える 4

1

totalパーセンテージを計算するには、スキャンした文字数と、個々の文字の数を追跡する必要があります。行を読むたびに、その行の文字数を合計数に追加します。

最後に、カウントを出力するときは、カウントをスキャンした文字の総数で割り (これにより 0 ~ 1 の数値が得られます)、これに 100 を掛けて、このキャラクターのパーセンテージ。

( count[ i ] / total ) * 100
于 2012-05-17T12:35:28.947 に答える
0

各文字を数えるときは、グローバルカウンター(合計)をインクリメントしてから、各文字の数を合計*100で割ります。

あなたのコードから、// Newを追加しました:

int total = 0;   // New
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]++;
total++;   // New
break;
}
}
}
}
System.out.println("");
System.out.println("Complete count");
for (int i = 0; i < 26; i++)
{
System.out.print(" " + small[i]);
System.out.println(" " + count[i]);
//calculate percentage for the full count
if (total > 0)      // New
  System.out.println(" " + ((count[i]/total) * 100) + "%");   // New
}
于 2012-05-17T12:31:39.433 に答える
0

以下のコードを使用します。

import java.util.Scanner;

public class JavaProgram {

    public static void main(String[] args) {
        calc();
    }

    public static void calc() {
        int i, j, k;
        String str;
        char c, ch;
        Scanner scan = new Scanner(System.in);

        System.out.print("Enter a String : ");
        str = scan.nextLine();

        i = str.length();
        for (c = 'A'; c <= 'z'; c++) {
            k = 0;
            for (j = 0; j < i; j++) {
                ch = str.charAt(j);
                if (ch == c) {
                    k++;
                }
            }
            if (k > 0) {
                float e1 = k;
                float e2 = i;
                double r = (e1 / e2) * 100;

                System.out.println("The character " + c + " has occurred for " + k + " times and its percentage is  " + r + "%");
            }
        }
    }
}
于 2016-03-07T13:54:05.143 に答える
0

これがあなたが持っている入力であるとします

a A b c d a A B C a

パーセンテージを見つけたい場合、出力は次のようになります

a = 50% (as it is 5 time out of 10 alphabet)
b = 20% (as it is 2 time out of 10 alphabet)
c = 20% (as it is 2 time out of 10 alphabet)
d = 10% (as it is 1 time out of 10 alphabet)

合計10個のアルファベットです。

以下は、あなたがする必要がある変更です

int myTotal = 0;
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]++;
        myTotal = myTotal + 1;
        break;
      }
    }
  }
}
System.out.println("");
System.out.println("Comlete count");
for (int i = 0; i < 26; i++)
{
  System.out.print(" " + small[i]);
  System.out.print(" " + count[i]);
  if (count[i] > 0)
    System.out.println(" " + (((float) count[i]/myTotal)*100) + "%");
  else
    System.out.println(" 0%");
  //calculate percentage for the full count
}

私があなたのコードで行った変更は

  1. として追加された変数

    int myTotal = 0;

  2. 合計アルファベット数をカウントするための同じ変数を追加しました。

    myTotal = myTotal + 1;

  3. 下の行から ln を削除

    System.out.println(" " + count[i]);

  4. としていくつかの行を追加しました

    if (count[i] > 0) System.out.println(" " + ((count[i]/myTotal)*100) + "%"); そうでなければ System.out.println(" 0%");

ご不明な点がございましたらお知らせください

更新 1

私は変わりました

    System.out.println(" " + ((count[i]/myTotal)*100) + "%");

    System.out.println(" " + (((float) count[i]/myTotal)*100) + "%");
于 2012-05-17T13:06:20.820 に答える