编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 4 点赞 0 评论 234 浏览 评分:9.9
题解 1008: [编程入门]成绩评定 摘要:###思路 简单的分支结构(if、else) ###代码 ```cpp #include using namespace std; int main() { int a,b; ci…… 题解列表 2024年02月04日 0 点赞 0 评论 327 浏览 评分:8.0
利用选择函数求解成绩评定 摘要:解题思路:可分情况讨论输入的成绩落在哪个区间,并输出对应区间的字符注意事项:输出的字符需要自己写出来,此种方法局限性较大,只针对本题可求解参考代码:#include<iostream>using na…… 题解列表 2024年01月17日 0 点赞 0 评论 167 浏览 评分:9.9
1008:成绩入门评定 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n>=90) { cout<<…… 题解列表 2024年01月14日 0 点赞 0 评论 126 浏览 评分:0.0
循环与数组合理搭配,写起来好看的撒 摘要:参考代码:#include<iostream> using namespace std; int main() { int x; cin >> x; char score[5] …… 题解列表 2024年01月01日 1 点赞 0 评论 249 浏览 评分:9.9
题解 1008: [编程入门]成绩评定 摘要:代码 ```cpp #include using namespace std; int main() { int n; scanf("%d",&n); if(n>=90) { p…… 题解列表 2023年05月19日 0 点赞 0 评论 398 浏览 评分:9.9
成 绩 评 定 摘要: #include using namespace std; int main() { int n; cin >> n; if …… 题解列表 2022年10月10日 0 点赞 0 评论 141 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n>=…… 题解列表 2022年05月24日 0 点赞 0 评论 142 浏览 评分:6.0
[编程入门]成绩评定c++ 摘要:解题思路:按题目来判定条件注意事项:<=,>=,<,>不要用错参考代码:#include<iostream>#include<fstream>#include<algorithm>//文件头using…… 题解列表 2022年05月09日 0 点赞 1 评论 291 浏览 评分:9.5
成绩评定 题解(c++暴力简单) 摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d…… 题解列表 2022年05月08日 0 点赞 0 评论 134 浏览 评分:0.0