BC10 实现四舍五入

思路:

使用地板除和取余数来计算;

代码如下:

n = float(input())
m = n%1
if m >= 0.5:
    print(int(n//1)+1)
else:
    print(int(n//1))