0

寻求基本数组问题的帮助。程序必须读取一个句子并将单词长度的频率存储在一个数组中,然后打印出有多少单词是 1 个字母的单词,2 个字母的单词等。

我是一个非常原始的 Java 程序员,但在下面做了一个尝试,非常感谢一些指导。我所拥有的似乎可以编译,但是当我运行程序并输入一个句子时会吐出一些乱码。

当我在程序中输入一个句子时,我会得到如下输出

[I@eb42cbf
[I@eb42cbf
[I@eb42cbf
[I@eb42cbf
[I@eb42cbf
[I@eb42cbf

我的代码:

class WordCount
{
    public static void main(String[] args)
    {
        int wordList[] = new int[20];
        System.out.println("Please enter a sentence.");

        for (int i = 0; i <= wordList.length; i++)
        {
            String s = Console.readToken();
            int x = s.length();
            wordList[x]++;
        }

        int x = 1;

        while (x < wordList.length)
        {
            if (wordList[x] > 0)
                System.out.println(x + "-letter words: " + wordList[x]);
            x++;
        }
    }
}
4

5 回答 5

3

以下是我的建议:

  • 使用Scanner而不是 Console.readToken,它不是标准 JDK 的一部分
  • 使用标准变量名(i 表示计数器优于 x)
  • 您的其余代码工作正常
  • 但我会使用 for 循环而不是 while 因为你知道你需要循环多少次

这是我的版本 - 更改是:使用扫描仪,将 x 重命名为 i 并将 while 循环更改为 for 循环:

public static void main(String[] args) {
    int wordList[] = new int[20];
    System.out.println("Please enter a sentence.");
    Scanner scanner = new Scanner(System.in); //Use a scanner, part of the standard JDK

    for (int i = 0; i <= wordList.length; i++) {
        String s = scanner.next(); //reads the next string
        int length = s.length();
        wordList[length]++;
    }

    for (int i = 0; i < wordList.length; i++) { //use a for loop
        if (wordList[i] > 0) {
            System.out.println(i + "-letter words: " + wordList[i]);
        }
    }
}
于 2012-07-31T10:54:03.033 回答
1

应该不是while循环

while(i < wordlist.Length){
  if (wordlist[i] > 0){
      System.out.println(i + "-letter words: " + wordlist[i]);
  }
  i++;      
}
于 2012-07-31T10:36:22.390 回答
0

另一种方法:

int wordList[] = new int[20];
    System.out.println("Please enter a sentence.");
    String s = "";
    try{
        BufferedReader bufferRead = new BufferedReader(new InputStreamReader(System.in));
        s  = bufferRead.readLine();        
    }
    catch(IOException e){
        e.printStackTrace();
    }

    String[] s1 = s.split(" ");
    for(int i = 0 ; i < s1.length ; i++){
        int len = s1[i].length(); 
        wordList[len]++; 
    }
    for (int i = 0; i < wordList.length; i++) { //use a for loop
    if (wordList[i] > 0) {
        System.out.println(i + "-letter words: " + wordList[i]);
       }
    }
于 2012-07-31T11:18:42.223 回答
0
private static long wordcount(String line){
    long numWords = 0;
    int index = 0;
    boolean prevWhiteSpace = true;
    while(index < line.length()){
        char c = line.charAt(index++);
        boolean currWhiteSpace = Character.isWhitespace(c);
        if(prevWhiteSpace && !currWhiteSpace){
            numWords++;
        }
        prevWhiteSpace = currWhiteSpace;
    }
    return numWords;
}
于 2012-07-31T10:35:05.827 回答
0

如果你的意思是当输入一个句子时:“This is a sentence that”,输出应该是:

4 个字母的单词:2

2 个字母的单词:1

1 个字母的单词:1

8个字母的单词:1

我的代码:

  import java.util.HashMap;
  import java.util.Scanner;

        class WordCount {
            public static void main(String[] args) {
                HashMap<Integer, Integer> statistic = new HashMap<Integer, Integer>();

                System.out.println("Please enter a sentence.");
                Scanner in = new Scanner(System.in);
                String s = in.nextLine();

                String[] words = s.split(" ");

                for (int i = 0; i < words.length; i++) {
                    if (statistic.containsKey(words[i].length())) {
                        Integer value = statistic.get(words[i].length());
                        statistic.put(words[i].length(), value + 1);
                    } else
                        statistic.put(words[i].length(), 1);
                }

                for (Integer num : statistic.keySet()) {

                    Integer key = num;
                    Integer value = statistic.get(num);
                    System.out.println(key + "-letter words: " + value);

                }

            }
        }
于 2012-07-31T11:05:42.900 回答