1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 92 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这道题就是给出一个数,判断它是那个等级的。注意事项:注意要看清楚每个等级的范围。参考代码:n = int(input())if n >= 90: print("A")elif n>=8…… 题解列表 2022年05月13日 0 点赞 0 评论 161 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:分支语句注意事项:注意每一个的相对应的范围。参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90) …… 题解列表 2022年05月20日 0 点赞 0 评论 302 浏览 评分:9.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
[编程入门]成绩评定 摘要:解题思路:使用switch语句注意事项:要了解switch语句的特点,当没有遇到break语句之前,将一直执行下去参考代码:import java.util.Scanner;public class …… 题解列表 2022年07月14日 0 点赞 0 评论 177 浏览 评分:0.0
1008: [编程入门]成绩评定(Python代码) 摘要:####**解题思路:** 1.**输入**百分制成绩 2.**判断**成绩等级 **if-elif-elif-elif-else** 3.**输出**等级 ####*…… 题解列表 2022年07月22日 0 点赞 0 评论 301 浏览 评分:7.0
题目 1008: [编程入门]成绩评定(C语言基础好理解~) 摘要:解题思路:1.选出60分以下的成绩,并打印输出E;2.当不是60以下时,选出70以下成绩(此时相当于选出[60,69]这个区间的成绩),并打印输出D;3.选出[70,79]成绩;4.选出[80,89]…… 题解列表 2022年07月23日 0 点赞 1 评论 315 浏览 评分:9.9
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int num = 0; char ch = 0; scanf("%d", &nu…… 题解列表 2022年07月29日 0 点赞 0 评论 115 浏览 评分:0.0
无敌的解法 摘要:解题思路:简单直接输入A注意事项:有时会多出问号,注意删除。参考代码:#include<stdio.h>int main(){ printf("A");return 0;}…… 题解列表 2022年08月06日 0 点赞 2 评论 249 浏览 评分:9.9
成绩评定问题 摘要:解题思路:使用if语句锁定成绩区间即可,简洁明了注意事项:参考代码:#include<stdio.h>int main(){ int c; scanf("%d",&c); if(c>…… 题解列表 2022年08月12日 0 点赞 0 评论 94 浏览 评分:0.0