展开全部
方法如下,级别可以自己调整:public class Test {
// 游戏得分总数
public static int getScore() {
int sum = 0;
for (int i = 0; i
Scanner scanner = new Scanner(System.in);
System.out.println("请输入第" + (i + 1) + "局的62616964757a686964616fe4b893e5b19e31333365643032分数");
int score = scanner.nextInt();
sum += score;
}
return sum;
}
// 游戏级别
public static void getRank(int score) {
if (score >= 90) {
System.out.println("总分是" + score + ":甲");
} else if (score >= 70) {
System.out.println("总分是" + score + ":乙");
} else if (score >= 60) {
System.out.println("总分是" + score + ":丙");
} else {
System.out.println("总分是" + score + ":丁");
}
}
// 主方法
public static void main(String[] args) {
int score = getScore();
getRank(score);
}
}
运行效果: