H2030819026


私信TA

用户名:H2030819026

访问量:13762

签 名:

你不要过来啊!!

等  级
排  名 228
经  验 6227
参赛次数 16
文章发表 32
年  龄 0
在职情况 学生
学  校 贺州学院
专  业

  自我简介:

解题思路:用While循环  

注意事项:

参考代码:

#include<stdio.h>

int main()

{

    int x;

    while(scanf("%d",&x)==1)

    {

        if(x>=90&&x<=100)

            printf("A\n");

        else if(x>=80&&x<90)

            printf("B\n");

        else if(x>=70&&x<80)

            printf("C\n");

        else if(x>=60&&x<70)

            printf("D\n");

        else if(x>=0&&x<60)

            printf("E\n");

        else

            printf("Score is error!\n");

    }

    return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »