我又来请教了

http://img.mukewang.com/58287fed0001923a08890294.jpg帮我看看,谢谢

做梦人4301048
浏览 1379回答 3
3回答

聊发少年狂

#include <stdio.h> int main () {     int score;     printf("input the score:");     scanf("%d",&score);     if(score<0 || score>100){         printf("input score error!\n");     }else{         score /= 10;         switch(score){             case 10:             case  9:                 printf("the score is 'A'\n");                 break;             case  8:                 printf("the score is 'B'\n");                 break;             case  7:                 printf("the score is 'C'\n");                 break;             case  6:                 printf("the score is 'D'\n");                 break;             default:                 printf("the score is 'E'\n");                 break;         }     }     return 0; }

不一样唉

先把成绩除以10,在进行判断它属于哪个层次,这样做比较简单。

雪颲

除以10就好了,再用switch case 语句就可以了
打开App,查看更多内容
随时随地看视频慕课网APP