编写题解 1008: [编程入门]成绩评定 摘要:解题思路:题目要求根据输入的整数成绩(0-100),输出对应的成绩等级。成绩等级分为‘A’、‘B’、‘C’、‘D&r…… 题解列表 2024年12月05日 0 点赞 0 评论 130 浏览 评分:0.0
1008: [编程入门]成绩评定题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int …… 题解列表 2024年12月01日 1 点赞 0 评论 228 浏览 评分:9.9
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int …… 题解列表 2024年12月01日 3 点赞 0 评论 111 浏览 评分:9.9
[编程入门]成绩评定(Switch语句) 摘要:解题思路:利用Switch语句解题,输出语句。注意事项:注意Switch语句格式,最后可以使用default,不要忘记break。参考代码:#include<stdio.h>intmain…… 题解列表 2024年09月14日 1 点赞 0 评论 133 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>intmain(){doublex;scanf("%lf",&x);if(x>90||x==90){print…… 题解列表 2024年08月04日 0 点赞 0 评论 79 浏览 评分:0.0
第二种方法解决此题 摘要:解题思路:第一种采用if &nbs…… 题解列表 2024年06月10日 0 点赞 0 评论 163 浏览 评分:7.2
成绩判定(数组和分支的结合) 摘要:#include<stdio.h>intmain(){ intcj; scanf("%d",…… 题解列表 2024年03月10日 0 点赞 0 评论 95 浏览 评分:0.0
题解 1008: [编程入门]成绩评定 摘要:###思路简单的分支结构(if、else)###代码```cpp#includeusingnamespacestd;intmain(){inta,b;cin>>a;if(a>=90)…… 题解列表 2024年02月04日 0 点赞 0 评论 280 浏览 评分:8.0
利用选择函数求解成绩评定 摘要:解题思路:可分情况讨论输入的成绩落在哪个区间,并输出对应区间的字符注意事项:输出的字符需要自己写出来,此种方法局限性较大,只针对本题可求解参考代码:#include<iostream>us…… 题解列表 2024年01月17日 0 点赞 0 评论 131 浏览 评分:9.9
1008:成绩入门评定 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){intn;cin>>n;if(n>=90){co…… 题解列表 2024年01月14日 0 点赞 0 评论 96 浏览 评分:0.0