我单独计算元音的代码不会给出我需要的值。它应该返回array.toString()但不返回

时间:2016-02-26 01:24:09

标签: java arrays

与标题相同。我的代码应该给出答案[1,3,3,1,0],但我不能让它给我任何控制台输出。

    public static void main(String[] args) {
        vowelCount("i think therefore i am");
    }

    public static int[] vowelCount(String sentence) {
        int[] vowelsCounted = new int[5];
        vowelsCounted.toString();
        for (int i=0; i<sentence.length(); i++) {
        char ch = sentence.charAt(i);
        if (ch == 'a') {
            vowelsCounted[0]++;
        } else if (ch == 'e') {
            vowelsCounted[1]++;
        } else if (ch == 'i') {
            vowelsCounted[2]++;
        } else if (ch == 'o') {
            vowelsCounted[3]++;
        } else if (ch == 'u') {
            vowelsCounted[4]++;
        }
        }
        return vowelsCounted;
    }
}

我需要一些关于该做什么以及为什么它不能给我答案的建议。 编辑:这已经回答了,我使用了错误的课程。它已改为:

import java.util.Arrays;

public class Exercise17 {

    public static void main(String[] args) {
        System.out.println(vowelCount("i think therefore i am"));
    }

    public static String vowelCount(String sentence) {
        int[] vowelsCounted = new int[5];
        vowelsCounted.toString();
        for (int i=0; i<sentence.length(); i++) {
        char ch = sentence.charAt(i);
        if (ch == 'a') {
            vowelsCounted[0]++;
        } else if (ch == 'e') {
            vowelsCounted[1]++;
        } else if (ch == 'i') {
            vowelsCounted[2]++;
        } else if (ch == 'o') {
            vowelsCounted[3]++;
        } else if (ch == 'u') {
            vowelsCounted[4]++;
        }
        }
        return Arrays.toString(vowelsCounted) ;

    }
}

2 个答案:

答案 0 :(得分:0)

你想要的是Arrays.toString(int [])方法:

每个不同的原始java类型都有一个静态的Arrays.toString帮助器方法; int []的那个说:

public static String toString(int[] a)

返回指定数组内容的字符串表示形式。字符串表示由数组元素的列表组成,用方括号括起来(“[]”)。相邻元素由字符“,”(逗号后跟空格)分隔。通过String.valueOf(int)将元素转换为字符串。如果a为null,则返回“null”。

答案 1 :(得分:0)

所以你想要的是

 if ((XPosition += $(this).width()) < $("#gridCon").width()) {
                    XPosition += $(".boxes").width()-1;
                    console.log($("#gridCon").width());
                    console.log(XPosition);
                } else {
                    console.log(YPosition);
                    XPosition = 0;
                    YPosition += $(".boxes").height();
                }