运行 ❯
获取自己的
Python
服务器
×
更改方向
更改主题,深色/浅色
到 Spaces
#Import math library import math #Round a number upward to its nearest integer print(math.ceil(1.4)) print(math.ceil(5.3)) print(math.ceil(-5.3)) print(math.ceil(22.6)) print(math.ceil(10.0))
2
6
-5
23
10