C语言用switch与else两种结构写

2022-03-15 社会 58阅读
#include  

main( ) 

int score=0,sel=0;
scanf("%d",&score);

if (score>=85 && score {
sel = 1;
}else if (score>=70 && score {
sel = 2;
}else if (score>=60 && score {
sel = 3;
}else if (score  {
sel =4;
}
switch (sel)
{
case 1:printf("优\n");break;
case 2:printf("良\n");break;
case 3:printf("及格\n");break;
case 4:printf("不及格\n");break;
default:printf("分数等级无效\n");break;
}

66
及格
Press any key to continue
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com