首页 > 试题广场 >

挂科危险

[编程题]挂科危险
  • 热度指数:8480 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
KiKi想知道这学期他的学习情况,BoBo老师告诉他这学期挂的科目累计的学分,根据所挂学分,判断KiKi学习情况,10分以上:很危险(Danger++),4~9分:危险(Danger),0~3:Good。

输入描述:
一行,一个整数(0~30),表示KiKi挂的科目累计的学分。


输出描述:
一行,根据输入的挂科学分,输出相应学习情况(Danger++,Danger,Good)。
示例1

输入

14

输出

Danger++
示例2

输入

9

输出

Danger
示例3

输入

1

输出

Good
score=int(input("请输入所挂学分")) if score >= 10: print("Danger++") elif score >=4 and score <=9 : print("Danger") elif score >=0 and score <=3: print("Good")

发表于 2021-03-01 22:20:58 回复(0)
x = int(input())
if x>=10:
    print("Danger++")
elif x<=3:
    print("Good")
else:
    print("Danger")


发表于 2020-10-12 11:34:46 回复(0)
s = int(input())
if s >= 10:
    print("Danger++")
elif s >= 4 and s <= 9:
    print("Danger")
elif s >= 0 and s <= 3:
    print("Good")

发表于 2020-07-10 20:38:05 回复(0)