成绩评定--(if else代码) 摘要:##[编程入门]成绩判定 ###if选择结构题解 ```c #include int main() { int x; scanf("%d",&x); if(x>=90){ …… 题解列表 2022年03月16日 0 点赞 0 评论 237 浏览 评分:2.0
[编程入门]成绩评定的三种方法 摘要:解题思路: 1. 先看题目,找出适合的方法,比如这的题目就和条件有关(分数和评级有关),因此可以使用if条件语句,if else嵌套,Switch语句来做此题. …… 题解列表 2022年04月01日 0 点赞 0 评论 272 浏览 评分:0.0
C语言Visual studio写法成绩评定题解{新手向} 摘要:解题思路:用else if注意事项:因为本人使用的Visual studio2022版本 在VS里 scanf是不允许被直接打出 需要加个_s 答题时删掉_s即可 答案以我VS写出来的为主 若有错误指…… 题解列表 2022年04月05日 0 点赞 0 评论 569 浏览 评分:0.0
成绩评定(c++语言) 摘要:解题思路:根据题意if判断注意事项:if语句的应用;参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a…… 题解列表 2022年04月27日 0 点赞 0 评论 550 浏览 评分:8.0
1008: [编程入门]成绩评定 摘要:#include<stdio.h> int main() { int i; scanf("%d",&i); if(i>=90){printf("A");} …… 题解列表 2022年05月06日 0 点赞 0 评论 199 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这题直接暴力好吧注意事项:要加=,输出是大写参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ cin>>n;…… 题解列表 2022年05月06日 0 点赞 0 评论 184 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d",&n); if…… 题解列表 2022年05月07日 0 点赞 0 评论 175 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:#include <iostream> using namespace std; int a; int main() { cin>>a; switch(a/10){ case 10:co…… 题解列表 2022年05月07日 0 点赞 0 评论 140 浏览 评分:0.0
成绩评定 题解(c++暴力简单) 摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d…… 题解列表 2022年05月08日 0 点赞 0 评论 150 浏览 评分:0.0
[编程入门]成绩评定c++ 摘要:解题思路:按题目来判定条件注意事项:<=,>=,<,>不要用错参考代码:#include<iostream>#include<fstream>#include<algorithm>//文件头using…… 题解列表 2022年05月09日 0 点赞 1 评论 316 浏览 评分:9.5