题解 | 不低于与不超过
不低于与不超过
https://www.nowcoder.com/practice/0be51146e30f4fa0ad1a6aac9078c1af
import sys num_list = [float(n) for n in input().split()] k = num_list[0] x = num_list[1] y = num_list[2] print(k <= x) print(k >= y)
不低于与不超过
https://www.nowcoder.com/practice/0be51146e30f4fa0ad1a6aac9078c1af
import sys num_list = [float(n) for n in input().split()] k = num_list[0] x = num_list[1] y = num_list[2] print(k <= x) print(k >= y)
相关推荐