数组中元素的总和

时间:2015-07-03 01:01:38

标签: java arrays for-loop foreach traversal

我正在为一个夏季java课程做一个简单的任务,并且只是希望你们可以看看我的代码,看看我做的方式是否是最好的方法。目的是创建一个包含至少25个元素的简单int数组,并使用循环遍历它并添加所有元素。我遇到了一些问题,但看起来我已经开始工作了。在我解决之后,我做了一些研究,看到了一些类似的东西,人们使用For Each循环(增强循环)。这会是一个更好的选择吗?我对使用反对常规for循环的最佳方法感到困惑。

无论如何,任何评论或批评都可以帮助我成为更好的程序员!

public class Traversals {

    public static void main(String[] args) {

        int absenceTotal = 0;
        // initialize array with 30 days of absences.
        int absencesArr[] = { 1, 3, 0, 9, 8, 23, 1, 
                11, 23, 5, 6, 7, 10, 1, 5,
                14, 2, 4, 0, 0, 1, 3, 2, 1, 
                1, 0, 0, 1, 3, 7, 2 };

        for (int i = 0; i < absencesArr.length; i++) {
            absencesArr[i] += absenceTotal;
            absenceTotal = absencesArr[i];
        }
        System.out.println("There were " + absenceTotal + " absences that day.");
    }
}

5 个答案:

答案 0 :(得分:7)

不要修改数组。我更喜欢for-each loop。你应该考虑到可能会有很多学生,所以我可能会((?>((<style>/\*!\* Bootstrap v(\d\.\d\.\d))|(<link[^>]+?href="[^"]+bootstrap(?:\.min)?\.css)|(<div [^>]*class="[^"]*col-(?:xs|sm|md|lg)-\d{1,2}) )))|((?><iframe src="[^>]+tumblr\.com))使用long。并格式化输出。将它们组合成类似

的东西
sum

答案 1 :(得分:5)

public class Traversals {

    public static void main(String[] args) {

        int absenceTotal = 0;
        // initialize array with 30 days of absences.
        int absencesArr[] = { 1, 3, 0, 9, 8, 23, 1, 
                11, 23, 5, 6, 7, 10, 1, 5,
                14, 2, 4, 0, 0, 1, 3, 2, 1, 
                1, 0, 0, 1, 3, 7, 2 };

        for (int i = 0; i < absencesArr.length; i++) {
            // remove this
            //absencesArr[i] += absenceTotal;
            absenceTotal += absencesArr[i]; //add this
        }
        System.out.println("There were " + absenceTotal + " absences that day.");
    }
}

答案 2 :(得分:2)

除了其他不错的贡献之外,我还是for-each loop的粉丝,并且通常会在一行中完成。

for(int i : absencesArr) absenceTotal += i;
System.out.printf("There were %d absences that day.", absenceTotal);

但在某些情况下,当我想控制对象的大小/长度/数量时,我将使用for loop,如下例所示:

for (int i = 0; i < absencesArr.length; i++) absenceTotal += absencesArr[i];
System.out.printf("There were %d absences that day.", absenceTotal);

如果我需要在for loopfor-each loop中包含多行代码,那么我会将它们全部放在大括号{ more than one line of code }内。

答案 3 :(得分:2)

在Java 8中,您可以使用stream api:

output << 13 << std::endl;

答案 4 :(得分:2)

我知道最短的方式是:

int sum=Arrays.stream(absencesArr).sum();