题解 1008: [编程入门]成绩评定

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

[编程入门]成绩评定的三种方法

摘要:解题思路:    1. 先看题目,找出适合的方法,比如这的题目就和条件有关(分数和评级有关),因此可以使用if条件语句,if else嵌套,Switch语句来做此题.                 ……

C语言Visual studio写法成绩评定题解{新手向}

摘要:解题思路:用else if注意事项:因为本人使用的Visual studio2022版本 在VS里 scanf是不允许被直接打出 需要加个_s 答题时删掉_s即可 答案以我VS写出来的为主 若有错误指……

成绩评定(c++语言)

摘要:解题思路:根据题意if判断注意事项:if语句的应用;参考代码:#include<iostream>using namespace std;int main(){    int a;    cin>>a……

1008: [编程入门]成绩评定

摘要:#include<stdio.h> int main() {     int i;     scanf("%d",&i);     if(i>=90){printf("A");}     ……

1008: [编程入门]成绩评定

摘要:解题思路:这题直接暴力好吧注意事项:要加=,输出是大写参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ cin>>n;……

[编程入门]成绩评定

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){    scanf("%d",&n);    if……

成绩评定 题解(c++暴力简单)

摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d……

[编程入门]成绩评定c++

摘要:解题思路:按题目来判定条件注意事项:<=,>=,<,>不要用错参考代码:#include<iostream>#include<fstream>#include<algorithm>//文件头using……