运行 ❯
获取您
自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
#Import math library import math # Round numbers down to the nearest integer print(math.floor(0.6)) print(math.floor(1.4)) print(math.floor(5.3)) print(math.floor(-5.3)) print(math.floor(22.6)) print(math.floor(10.0))
0
1
5
-6
22
10