成绩等级转换 (C语言代码)P.S.另一个题解是C++描述 摘要:解题思路:很简单的一道题,只需用if和else if就可以咯。注意事项:例如:表示判断t在90~100,须写为if(t>=90&&t<=100),不能直接写成if(90<=t<=100),系统会自动忽…… 题解列表 2018年08月17日 4 点赞 0 评论 929 浏览 评分: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
成绩等级转换 (C语言代码) 摘要:解题思路:使用switch语句实现,很简单。注意不是0-100,要输出成绩错误哦。参考代码:#include <stdio.h> int main() { int score; char…… 题解列表 2018年09月11日 0 点赞 0 评论 1179 浏览 评分:6.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstdlib> #include <iostream> #include <cmath> #includ…… 题解列表 2018年11月15日 7 点赞 0 评论 849 浏览 评分:9.9
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int g;while(scanf("%d",&g)!=EOF){if(g<0||g>100){ printf("…… 题解列表 2019年01月08日 0 点赞 0 评论 480 浏览 评分:0.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; while(~scanf("%d", &a)){ switch(a/10){ …… 题解列表 2019年01月15日 0 点赞 0 评论 461 浏览 评分:0.0
C语言 之 switch-continue-break特殊格式 求 成绩等级转换 (C语言代码) 摘要:解题思路:不想写if-else形式的可以参考我的这种格式!如果成绩大于100则 continue;continue是指跳出本次循环,重新进入下一次循环;再结合switch-case-break语句完美…… 题解列表 2019年01月24日 4 点赞 1 评论 1250 浏览 评分:9.9
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int t; while (scanf("%d", &t) == 1) { if (t >= 90 &…… 题解列表 2019年02月17日 0 点赞 0 评论 445 浏览 评分:0.0
成绩等级转换-题解(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<stdio.h>#include<math.h>int main(){ int a; while(scanf("%d",&a)!=EOF) { if(…… 题解列表 2020年08月16日 0 点赞 0 评论 316 浏览 评分:0.0