在哪你都看得到我记住这句话 摘要:解题思路:这个也是只需要几个if else 就可以解决了注意事项:参考代码:#include<iostream>usingnamespacestd;…… 题解列表 2026年03月19日 0 点赞 0 评论 36 浏览 评分:0.0
C语言两种方法解题 摘要:# //方法一:用switch...case语句/#includeint main(){ int score; scanf("%d",&score); /…… 题解列表 2025年12月22日 0 点赞 0 评论 339 浏览 评分:0.0
1008:成绩评定 摘要:解题思路:一个简单的if else if参考代码:#include<stdio.h> int main(void) …… 题解列表 2025年11月19日 1 点赞 0 评论 431 浏览 评分:10.0
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:题目要求根据输入的整数成绩(0-100),输出对应的成绩等级。成绩等级分为 ‘A’、‘B’、‘C’、‘D’ 和 ‘E’,具体分级标准如下:90分及以上为 ‘A’80-89分为 ‘B’70-7…… 题解列表 2024年12月05日 10 点赞 2 评论 3310 浏览 评分:10.0
1008: [编程入门]成绩评定题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 8 点赞 0 评论 1604 浏览 评分:9.9
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 6 点赞 0 评论 1348 浏览 评分:9.9
[编程入门]成绩评定(Switch语句) 摘要:解题思路:利用Switch语句解题,输出语句。注意事项:注意Switch语句格式,最后可以使用default,不要忘记break。参考代码:#include<stdio.h>int main(){ i…… 题解列表 2024年09月14日 7 点赞 0 评论 1304 浏览 评分:6.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ double x; scanf("%lf",&x); if(x>90||x==90){ printf("A"); } if((x>…… 题解列表 2024年08月04日 0 点赞 0 评论 829 浏览 评分:0.0
成绩判定(数组和分支的结合) 摘要:#include <stdio.h>int main(){ int cj; scanf("%d",&cj); int x; x=cj/10-6; char…… 题解列表 2024年03月10日 0 点赞 0 评论 808 浏览 评分:0.0