瞎折腾


私信TA

用户名:chenbin

访问量:63646

签 名:

等  级
排  名 75
经  验 10027
参赛次数 0
文章发表 74
年  龄 0
在职情况 学生
学  校 中南大学
专  业

  自我简介:

解题思路:

首先在循环外输入一个score值,然后再循环while(score>0)执行循环语句;

在循环体内继续输入score。



注意事项:





参考代码:

#include<stdio.h>

int main()

{

    int super=0,mid=0,lower=0,score;

    scanf("%d",&score);

    while(score>0)

    {

        if(score>=85) super++;

        else if(score>=60 && score<=84) mid++;

        else lower++;

        scanf("%d",&score);

    }

    printf(">=85:%d\n",super);

    printf("60-84:%d\n",mid);

    printf("<60:%d",lower);

    return 0;

}


 

0.0分

0 人评分

  评论区

真是一个小机灵鬼
2019-07-02 19:22:31
  • «
  • 1
  • »