成绩评定 from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int grade; cin>>grade; switch(grade/10…… 题解列表 2022年01月23日 0 点赞 0 评论 199 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x; scanf("%d", &x); if (x >= 90) printf("A"); else…… 题解列表 2022年01月29日 0 点赞 0 评论 234 浏览 评分:0.0
[编程入门]成绩评定的三种方法 摘要:解题思路: 1. 先看题目,找出适合的方法,比如这的题目就和条件有关(分数和评级有关),因此可以使用if条件语句,if else嵌套,Switch语句来做此题. …… 题解列表 2022年04月01日 0 点赞 0 评论 395 浏览 评分:0.0
C语言Visual studio写法成绩评定题解{新手向} 摘要:解题思路:用else if注意事项:因为本人使用的Visual studio2022版本 在VS里 scanf是不允许被直接打出 需要加个_s 答题时删掉_s即可 答案以我VS写出来的为主 若有错误指…… 题解列表 2022年04月05日 0 点赞 0 评论 652 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:#include<stdio.h> int main() { int i; scanf("%d",&i); if(i>=90){printf("A");} …… 题解列表 2022年05月06日 0 点赞 0 评论 364 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这题直接暴力好吧注意事项:要加=,输出是大写参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ cin>>n;…… 题解列表 2022年05月06日 0 点赞 0 评论 271 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d",&n); if…… 题解列表 2022年05月07日 0 点赞 0 评论 253 浏览 评分: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 评论 220 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 168 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这道题就是给出一个数,判断它是那个等级的。注意事项:注意要看清楚每个等级的范围。参考代码:n = int(input())if n >= 90: print("A")elif n>=8…… 题解列表 2022年05月13日 0 点赞 0 评论 280 浏览 评分:0.0