成绩评定 题解(c++暴力简单) 摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d…… 题解列表 2022年05月08日 0 点赞 0 评论 187 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 139 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这道题就是给出一个数,判断它是那个等级的。注意事项:注意要看清楚每个等级的范围。参考代码:n = int(input())if n >= 90: print("A")elif n>=8…… 题解列表 2022年05月13日 0 点赞 0 评论 242 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:使用switch语句注意事项:要了解switch语句的特点,当没有遇到break语句之前,将一直执行下去参考代码:import java.util.Scanner;public class …… 题解列表 2022年07月14日 0 点赞 0 评论 261 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int num = 0; char ch = 0; scanf("%d", &nu…… 题解列表 2022年07月29日 0 点赞 0 评论 162 浏览 评分:0.0
成绩评定问题 摘要:解题思路:使用if语句锁定成绩区间即可,简洁明了注意事项:参考代码:#include<stdio.h>int main(){ int c; scanf("%d",&c); if(c>…… 题解列表 2022年08月12日 0 点赞 0 评论 316 浏览 评分:0.0
比较笨的题解(不用switch-case语句) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int score; scanf("%d",&score); if(score>=90) { printf("A…… 题解列表 2022年09月25日 0 点赞 0 评论 197 浏览 评分:0.0
成 绩 评 定 摘要: #include using namespace std; int main() { int n; cin >> n; if …… 题解列表 2022年10月10日 0 点赞 0 评论 207 浏览 评分:0.0
JAVA解决成绩判定 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2022年10月26日 0 点赞 0 评论 209 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x>=0 && x<=100) …… 题解列表 2022年11月21日 0 点赞 0 评论 92 浏览 评分:0.0