23.使用数组计算平均分

Posted 许先

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了23.使用数组计算平均分相关的知识,希望对你有一定的参考价值。

import java.util.Scanner;

public class ArrayDemo {

    /**
     * 使用数组计算平均分
     */
    public static void main(String[] args) {
        int[] scores = new int[5];    //成绩数组
        int sum = 0;                //成绩总和
        Scanner input = new Scanner(System.in);
        System.out.println("请输入5位学员的成绩:");
        for(int i = 0; i < scores.length; i++){
            scores[i] = input.nextInt();
            sum = sum + scores[i];    //成绩累加
        }
        /*//使用foreach遍历
        for(int i = 0; i < scores.length; i++){
            scores[i] = input.nextInt();
        }
        for(int score:scores){
            sum+=score;
        }*/
        //计算并输出平均分
        System.out.println("学员的平均分是:" + (double)sum/scores.length);
    }
}

 

以上是关于23.使用数组计算平均分的主要内容,如果未能解决你的问题,请参考以下文章

14 2维数组练习

14 2维数组练习

合并二维数组,并计算重复字段的平均值

计算数组列表的平均值?

如何计算数组中元素的总和和平均值?

Zapier 编写的代码循环遍历一组对象,每个对象提取一个值,然后平均这些值