陈佳豪


私信TA

用户名:dotcpp0665353

访问量:2628

签 名:

等  级
排  名 358
经  验 5266
参赛次数 1
文章发表 48
年  龄 0
在职情况 学生
学  校 淄博职业学院
专  业 软件技术·

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:import java.util.Scanner;

public class 测试 {
   public static void main(String [] args){
       Scanner sc=new Scanner(System.in);
    int a=0;//记录大于85分的人数
    int b=0;//记录60~84分的人数
    int c=0;//记录小于60的人数
           while(true) {
               int score=sc.nextInt();
               if (score == 0) {
                   break;
               } else if (score >= 85) {
                   a++;
               } else if (score >= 60 && score <= 84) {
                   b++;
               } else if (score < 60) {
                   c++;
               }
           }
       System.out.println(">=85:"+a+"\n60-84:"+b+"\n<60:"+c);
   }
   }

 

0.0分

0 人评分

  评论区

  • «
  • »