C语言--根据成绩判断等级
一.题目描述
如果学生的成绩小于60分,那么输出不及格
如果学生的成绩大于60分小于85分,那么输出良好
如果学生的成绩大于85分,那么输出优秀
二.代码实现
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
//根据成绩打印等级
//score<60 不及格
//60<=score<85 良好
//score>85 优秀
int main()
{
int score;
printf("请输入学生的成绩: ");
scanf("%d",&score);
if(score<60)
printf("不及格");
else if(score>=60&&score<85)
printf("良好");
else if(score>=85)
printf("优秀");
}
运行结果
今天的分享就到这里啦!一个简单的if...else语句,如果喜欢的话就给小编一个免费的赞以表鼓励吧🍗🍗🍗