1008: [编程入门]成绩评定 摘要:解题思路:switch判断注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; …… 题解列表 2021年03月21日 0 点赞 0 评论 303 浏览 评分:7.3
[编程入门]成绩评定-题解(Python代码) 摘要:解题思路:用if-elif-else结构注意事项:if,n开头都不要缩进。条件后要:else后也要:Python参考代码:n=int(input()) if n>100 or n<0: e…… 题解列表 2020年06月28日 0 点赞 0 评论 1499 浏览 评分:7.3
[编程入门]成绩评定-题解(C++代码) 摘要:通俗易懂,当然还可以用其他的方法做会比我这个简单 代码如下:#include using namespace std; int main() { int a; cin>>…… 题解列表 2020年06月12日 0 点赞 0 评论 331 浏览 评分:7.0
1008: [编程入门]成绩评定(Python代码) 摘要:####**解题思路:** 1.**输入**百分制成绩 2.**判断**成绩等级 **if-elif-elif-elif-else** 3.**输出**等级 ####*…… 题解列表 2022年07月22日 0 点赞 0 评论 301 浏览 评分:7.0
[编程入门]成绩评定-题解(C语言代码) 摘要:成绩评定 switch (控制表达式){ case 常量: 语句 ...... case 常量: 语句 ...... default: 语句 …… 题解列表 2020年03月23日 0 点赞 0 评论 407 浏览 评分:7.0
[编程入门]成绩评定-题解(Python代码) 摘要:参考代码:grade = int(input())if grade >= 90: print('A')elif grade >= 80: print('B'…… 题解列表 2021年02月18日 0 点赞 0 评论 302 浏览 评分:6.7
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:利用if语句解决,是个笨方法注意事项:注意输出为字符型并且在公式中赋值也是字符参考代码:#include<stdio.h> void main() { int n,m;//定义…… 题解列表 2020年12月23日 0 点赞 0 评论 325 浏览 评分:6.0
c++代码,非常原始 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n; scanf("%d",&n); if(n>=90) { printf("A…… 题解列表 2022年02月09日 0 点赞 0 评论 459 浏览 评分:6.0
if解题,正常解法 摘要:解题思路:正常思路注意事项:参考代码:#include <stdio.h>int main (){int a;scanf ("%d",&a);if (100>=a&&a>=90) { …… 题解列表 2023年06月19日 0 点赞 2 评论 77 浏览 评分:6.0