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