题解 | 不低于与不超过
不低于与不超过
https://www.nowcoder.com/practice/0be51146e30f4fa0ad1a6aac9078c1af
k,x,y=map(float,input().split())
if k<=x:
print(True)
else:
print(False)
if k>=y:
print(True)
else:
print(False)
不低于与不超过
https://www.nowcoder.com/practice/0be51146e30f4fa0ad1a6aac9078c1af
k,x,y=map(float,input().split())
if k<=x:
print(True)
else:
print(False)
if k>=y:
print(True)
else:
print(False)
相关推荐
饼子吃到撑:现在就是学历大于一切了,尤其是应届生,你再厉害人家筛选按钮选择985双非直接完蛋,学历就是硬伤,公司肯定都想用优秀的人,但是不知道你到底优不优秀只能通过最原始的方法来筛选~学历,
查看2道真题和解析