[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:x=int(input())if x>=0 and x<60: print("E")elif x>=60 and x<70: print("D")elif x…… 题解列表 2023年01月14日 1 点赞 2 评论 949 浏览 评分:9.9
1008: [编程入门]成绩评定 摘要:解题思路:一看就知道是用if语句,一道比较简单的题。注意事项:参考代码:x = int(input())if x<60: print("E")elif x>=60 and x<70: prin…… 题解列表 2023年01月04日 0 点赞 0 评论 134 浏览 评分:0.0
1008: [编程入门]成绩评定(Python代码) 摘要:####**解题思路:** 1.**输入**百分制成绩 2.**判断**成绩等级 **if-elif-elif-elif-else** 3.**输出**等级 ####*…… 题解列表 2022年07月22日 0 点赞 0 评论 301 浏览 评分:7.0
1008: [编程入门]成绩评定 摘要:解题思路:这道题就是给出一个数,判断它是那个等级的。注意事项:注意要看清楚每个等级的范围。参考代码:n = int(input())if n >= 90: print("A")elif n>=8…… 题解列表 2022年05月13日 0 点赞 0 评论 160 浏览 评分:0.0
[编程入门]成绩评定python 摘要:解题思路:注意事项:参考代码:n = int(input())m = ''if n < 60: m = 'E'elif n < 70: m = 'D…… 题解列表 2022年01月17日 0 点赞 0 评论 280 浏览 评分:6.0
Python字典映射 摘要:score = int(input())number = score//10switcher = { 10: 'A', 9: 'A', 8: '…… 题解列表 2021年12月10日 0 点赞 0 评论 157 浏览 评分:0.0
【sor魔法再现】1008: 成绩评定---史上最最短AC代码,1行!python一题两解,"双一流"惊现江湖:字典推导,一键取值~lambda三元!直接打印 摘要:解题思路:【sor魔法再现】1008: 成绩评定---史上最最短AC代码,1行!python一题两解,"双一流"惊现江湖:字典推导,一键取值~lambda三元!直接打印注意事项:下面两行代码是两个独立…… 题解列表 2021年11月24日 0 点赞 0 评论 439 浏览 评分:7.3
[编程入门]成绩评定------【c语言】||【Python】 摘要:Python ```python n=int(input()) if n>=90: print('A') elif n>=80: print('B') elif n>=7…… 题解列表 2021年11月06日 0 点赞 0 评论 165 浏览 评分:0.0
[编程入门]成绩评定-题解(Python代码) 摘要:参考代码:grade = int(input())if grade >= 90: print('A')elif grade >= 80: print('B'…… 题解列表 2021年02月18日 0 点赞 0 评论 302 浏览 评分:6.7
[编程入门]成绩评定-题解(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