c语言题目:输入某学生的成绩,经处理后给出学生的等级
作者:野牛程序员:2023-12-05 15:29:13c语言阅读 3615
c语言题目:输入某学生的成绩,经处理后给出学生的等级,等级分类如下: 90分以上(包括90): A 80至90分(包括80):B 70至80分(包括70):C 60至70分(包括60):D 60分以下: E 方法一:(用if语句的嵌套)
#include <stdio.h> int main() { int score; // 请在这里输入学生的成绩 scanf("%d", &score); // 方法一:if语句的嵌套 if (score >= 90) { printf("A"); } else if (score >= 80) { printf("B"); } else if (score >= 70) { printf("C"); } else if (score >= 60) { printf("D"); } else { printf("E"); } return 0; }
方法二:用switch语句
#include <stdio.h> int main() { int score; // 请在这里输入学生的成绩 scanf("%d", &score); // 方法二:switch语句 switch (score / 10) { case 10: case 9: printf("A"); break; case 8: printf("B"); break; case 7: printf("C"); break; case 6: printf("D"); break; default: printf("E"); } return 0; }
野牛程序员教少儿编程与信息学奥赛-微信|电话:15892516892
- 上一篇:c语言题目:根据用户输入的时间序号显示相应的问候信息
- 下一篇:C++常用库函数