Run »
×
Change Orientation
#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
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit