摘要: 编写程序,判断学生的成绩是什么等级 #include<stdio.h> main(){ int score; printf("输入学生的分数\n"); scanf("%d",&score); switch(score/10) { case 10:printf("A\n");break; case 9 阅读全文
posted @ 2021-10-27 21:53 张云月 阅读(29) 评论(0) 推荐(0)