用Java 计算5名学生总评成绩最高分,最低分,平均分
时间: 2023-05-12 10:06:57 浏览: 178
学生成绩管理系统学生信息管理系统.zip
可以使用Java的数组来存储5名学生的成绩,然后使用循环遍历数组,计算总分、最高分、最低分,最后求出平均分。以下是示例代码:
```java
public class Main {
public static void main(String[] args) {
double[] scores = {85.5, 90.0, 92.5, 88.0, 91.5};
double sum = 0.0;
double max = scores[0];
double min = scores[0];
for (double score : scores) {
sum += score;
if (score > max) {
max = score;
}
if (score < min) {
min = score;
}
}
double avg = sum / scores.length;
System.out.println("总分:" + sum);
System.out.println("最高分:" + max);
System.out.println("最低分:" + min);
System.out.println("平均分:" + avg);
}
}
```
输出结果为:
```
总分:448.5
最高分:92.5
最低分:85.5
平均分:89.7
```
阅读全文