以下程序引入Python的math模块,使用math模块下的floor函数对命令行输入的实数进行取整。
n=input(“请输入一个实数:”)
n2= math. floor(float(n))
print(n2)