题解 | #取近似值#
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
a = float(input()) if a - int(a)>=0.5: print(int(a)+1) else: print(int(a))
这题主要要注意不能直接用round函数
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
a = float(input()) if a - int(a)>=0.5: print(int(a)+1) else: print(int(a))
这题主要要注意不能直接用round函数
相关推荐