题解 | 取近似值
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
while True: try: x = float(input()) n = int(x) if x - n >= 0.5: n += 1 print(n) except: break
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
while True: try: x = float(input()) n = int(x) if x - n >= 0.5: n += 1 print(n) except: break
相关推荐