#include
int main()
{
unsigned int score;
printf("输入分数:n");
scanf_s("%d", &score);
if (score <= 100)
{
switch (score / 10)
{
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:printf("等级En"); break;
case 6:printf("等级Dn"); break;
case 7:printf("等级Cn"); break;
case 8:printf("等级Bn"); break;
case 9:
case 10:printf("等级An"); break;
}
}
else printf("!非法输入");//这一句是 当输入的数小于0时,就会显示
return 0;
}
以上是switch语句
以下是if语句书写
#include
int main()
{
unsigned int score;
printf("输入分数:n");
scanf_s("%d", &score);
if (score >= 90 && score <= 100)
{
printf("你的等级A");
}
if (score >= 80 && score < 90)
{
printf("你的等级B");
}
if (score >= 70 && score < 80)
{
printf("你的等级C");
}
if (score >= 60 && score < 70)
{
printf("你的等级D");
}
if (score < 60 && score >= 0)
{
printf("你的等级En");
}
else printf("!非法输入");//这一句是 当输入的数小于0时,就会显示
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)