题解 | #取近似值#
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
print(int(float(input()) + 0.5))
n>0.5 <=> n+0.5>1
n<0.5 <=> n+0.5<1
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
print(int(float(input()) + 0.5))
n>0.5 <=> n+0.5>1
n<0.5 <=> n+0.5<1
相关推荐