在哪你都看得到我记住这句话 摘要:解题思路:这个也是只需要几个if else 就可以解决了注意事项:参考代码:#include<iostream>usingnamespacestd;…… 题解列表 2026年03月19日 0 点赞 0 评论 36 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 6 点赞 0 评论 1348 浏览 评分:9.9
题解 1008: [编程入门]成绩评定 摘要:###思路 简单的分支结构(if、else) ###代码 ```cpp #include using namespace std; int main() { int a,b; ci…… 题解列表 2024年02月04日 2 点赞 0 评论 1078 浏览 评分:8.0
利用选择函数求解成绩评定 摘要:解题思路:可分情况讨论输入的成绩落在哪个区间,并输出对应区间的字符注意事项:输出的字符需要自己写出来,此种方法局限性较大,只针对本题可求解参考代码:#include<iostream>using na…… 题解列表 2024年01月17日 0 点赞 0 评论 682 浏览 评分:9.9
1008:成绩入门评定 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n>=90) { cout<<…… 题解列表 2024年01月14日 0 点赞 0 评论 673 浏览 评分:0.0
循环与数组合理搭配,写起来好看的撒 摘要:参考代码:#include<iostream> using namespace std; int main() { int x; cin >> x; char score[5] …… 题解列表 2024年01月01日 1 点赞 0 评论 693 浏览 评分:9.9
题解 1008: [编程入门]成绩评定 摘要:代码 ```cpp #include using namespace std; int main() { int n; scanf("%d",&n); if(n>=90) { p…… 题解列表 2023年05月19日 0 点赞 0 评论 702 浏览 评分:9.9
成 绩 评 定 摘要: #include using namespace std; int main() { int n; cin >> n; if …… 题解列表 2022年10月10日 0 点赞 0 评论 395 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n>=…… 题解列表 2022年05月24日 0 点赞 0 评论 391 浏览 评分:6.0
[编程入门]成绩评定c++ 摘要:解题思路:按题目来判定条件注意事项:<=,>=,<,>不要用错参考代码:#include<iostream>#include<fstream>#include<algorithm>//文件头using…… 题解列表 2022年05月09日 0 点赞 1 评论 575 浏览 评分:9.5