[编程入门]成绩评定 摘要:解题思路:使用switch语句注意事项:要了解switch语句的特点,当没有遇到break语句之前,将一直执行下去参考代码:import java.util.Scanner;public class …… 题解列表 2022年07月14日 0 点赞 0 评论 176 浏览 评分: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
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:分支语句注意事项:注意每一个的相对应的范围。参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90) …… 题解列表 2022年05月20日 0 点赞 0 评论 301 浏览 评分:9.0
1008: [编程入门]成绩评定 摘要:解题思路:这道题就是给出一个数,判断它是那个等级的。注意事项:注意要看清楚每个等级的范围。参考代码:n = int(input())if n >= 90: print("A")elif n>=8…… 题解列表 2022年05月13日 0 点赞 0 评论 161 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 92 浏览 评分:0.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
编写题解 1008: [编程入门]成绩评定 摘要:#include <iostream> using namespace std; int a; int main() { cin>>a; switch(a/10){ case 10:co…… 题解列表 2022年05月07日 0 点赞 0 评论 126 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d",&n); if…… 题解列表 2022年05月07日 0 点赞 0 评论 158 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这题直接暴力好吧注意事项:要加=,输出是大写参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ cin>>n;…… 题解列表 2022年05月06日 0 点赞 0 评论 164 浏览 评分:0.0