利用for语句,每次循环利用对象输入一组程序,同时判断该成绩是否为90,100
2条回答 默认 最新
- threenewbee 2023-04-09 22:57关注
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int countA = 0; int countB = 0; int countC = 0; int countD = 0; int countE = 0; for (int i = 1; i <= 10; i++) { System.out.println("请输入第" + i + "个学生的成绩:"); int score = input.nextInt(); if (score >= 90 && score <= 100) { countA++; } else if (score >= 80 && score <= 89) { countB++; } else if (score >= 70 && score <= 79) { countC++; } else if (score >= 60 && score <= 69) { countD++; } else { countE++; } } System.out.println("A等成绩人数:" + countA); System.out.println("B等成绩人数:" + countB); System.out.println("C等成绩人数:" + countC); System.out.println("D等成绩人数:" + countD); System.out.println("E等成绩人数:" + countE); } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 ansys fluent计算闪退
- ¥15 有关wireshark抓包的问题
- ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
- ¥15 向数据表用newid方式插入GUID问题
- ¥15 multisim电路设计
- ¥20 用keil,写代码解决两个问题,用库函数
- ¥50 ID中开关量采样信号通道、以及程序流程的设计
- ¥15 U-Mamba/nnunetv2固定随机数种子
- ¥15 vba使用jmail发送邮件正文里面怎么加图片
- ¥15 vb6.0如何向数据库中添加自动生成的字段数据。