成绩等级转换-题解(C语言代码) 摘要:```c #include int score(int a); int main(){ int n; while(scanf("%d",&n)==1){ switch(score(…… 题解列表 2019年07月03日 0 点赞 0 评论 706 浏览 评分:9.9
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ int t; while(scanf("%d", &t) != EOF) sw…… 题解列表 2024年11月19日 0 点赞 0 评论 200 浏览 评分:9.9
成绩等级转换-题解(C语言代码) 摘要:解题思路:用While循环 注意事项:参考代码:#include<stdio.h>int main(){ int x; while(scanf("%d",&x)==1) { …… 题解列表 2020年11月27日 0 点赞 0 评论 829 浏览 评分:9.9
C语言 之 switch-continue-break特殊格式 求 成绩等级转换 (C语言代码) 摘要:解题思路:不想写if-else形式的可以参考我的这种格式!如果成绩大于100则 continue;continue是指跳出本次循环,重新进入下一次循环;再结合switch-case-break语句完美…… 题解列表 2019年01月24日 4 点赞 1 评论 1387 浏览 评分:9.9
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstdlib> #include <iostream> #include <cmath> #includ…… 题解列表 2018年11月15日 7 点赞 0 评论 911 浏览 评分:9.9
成绩等级转换 (C语言代码) 摘要:解题思路:使用switch语句实现,很简单。注意不是0-100,要输出成绩错误哦。参考代码:#include <stdio.h> int main() { int score; char…… 题解列表 2018年09月11日 0 点赞 0 评论 1222 浏览 评分:6.0
成绩等级转换Switch语句练习题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; while (scanf("%d",&x)!=EOF){ y=x/10;…… 题解列表 2021年11月07日 0 点赞 0 评论 557 浏览 评分:2.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int g;while(scanf("%d",&g)!=EOF){if(g<0||g>100){ printf("…… 题解列表 2019年01月08日 0 点赞 0 评论 562 浏览 评分:0.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; while(~scanf("%d", &a)){ switch(a/10){ …… 题解列表 2019年01月15日 0 点赞 0 评论 534 浏览 评分:0.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int t; while (scanf("%d", &t) == 1) { if (t >= 90 &…… 题解列表 2019年02月17日 0 点赞 0 评论 512 浏览 评分:0.0