用Java编写一个程序,从键盘输入一个学生语文、数学、英语三门课的成绩,计算出三门课总成绩和平均分,并打印输出
时间: 2024-03-03 18:48:32 浏览: 110
用java语言编写统计学生成绩的程序
5星 · 资源好评率100%
好的,以下是Java代码实现:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入学生的语文成绩:");
double chinese = input.nextDouble();
System.out.print("请输入学生的数学成绩:");
double math = input.nextDouble();
System.out.print("请输入学生的英语成绩:");
double english = input.nextDouble();
double totalScore = chinese + math + english;
double averageScore = totalScore / 3;
System.out.println("总成绩:" + totalScore);
System.out.println("平均分:" + averageScore);
}
}
```
首先通过 `Scanner` 类从键盘输入学生的语文、数学、英语三门课的成绩,然后分别计算三门课的总成绩和平均分,最后打印输出总成绩和平均分。
阅读全文