易出错 002 遗漏“switch” 与遗漏“负数”的判断

本文对比了C/C++中使用if-else和switch语句实现分数等级分类的代码,展示了如何提高代码效率并确保输入有效性。通过实例演示了如何将90分以上的成绩分为'A',80-89分为'B',以此类推,直到'E'代表60分以下。
摘要由CSDN通过智能技术生成

90分以上为’A’,80-89为’B’,70-79为’C’,60-69为’D’,60以下为’E’

#include<stdio.h>
int main(){
	int score;
	scanf("%d",&score);             //遗漏了scanf的内容,显示为   D
	if (score > 100  || score < 0) //遗漏了score不可小于0
		printf("input error!");
	if(score > 90)
		printf("A");
		else if(80 < score)
			printf("B");
		else if(70 < score)
			printf("C");
		else if(60 < 70)
			printf("D");
		else 
			printf("E");
	return 0;
}

**
**
下面为switch语句的程序代码

#include<stdio.h>
int main(){
	int score;
	scanf("%d",&score);
	if( score<0 || score>100)
		printf("data error\n");
	else switch(score/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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值