当前位置:   article > 正文

Java数组-采用for循环和while计算十个学生的平均成绩并且取两位小数_for 循环输入10个人的成绩

for 循环输入10个人的成绩
案列演示,统计十个学生的平均分
public static void main(String[] args)throws Exception {
        double[] scores=new double[11];//长度为11
        double sum=0,average=0;
        Scanner sc=new Scanner(System.in);

        //输入部分
        for (int i=1;i<scores.length;i++){
            System.out.print("scores["+i+"] = ");
            scores[i]=sc.nextDouble();
        }
        //输出部分
    for (int i=1;i<scores.length;i++){
        sum+=scores[i];
    }
    average=sum/scores.length;
    System.out.println(scores.length-1+"个学生的总平均成绩为:"+String.format("%.2f",average));

}
}






采用while循环求10个学生成绩平均分
double[] scores = new double[11];
double sum = 0, average;
Scanner sc = new Scanner(System.in);
int i = 1;
while (i<scores.length) {

    System.out.print("scores[" + i + "]=");

    scores[i] = sc.nextDouble();

    sum = scores[i] + sum;
    i++;
}
average = sum / scores.length - 1;
System.out.println(scores.length - 1 + "个学生的平均成绩为:" + String.format("%.2f", average));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/559045
推荐阅读
相关标签
  

闽ICP备14008679号