Upload files to "basic programming/1st task"
This commit is contained in:
18
basic programming/1st task/8.py
Normal file
18
basic programming/1st task/8.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Q8
|
||||
|
||||
# Imports
|
||||
import math
|
||||
|
||||
# Get value from user
|
||||
number = float(input("Enter float with 5 or more decimal digits: "))
|
||||
|
||||
# Calculate ceiling and floor
|
||||
number_ceiling = math.ceil(number)
|
||||
number_floor = math.floor(number)
|
||||
|
||||
# Round number
|
||||
number_rounded = round(number, 2)
|
||||
|
||||
# Print results
|
||||
for variable in [number_floor, number_ceiling, number_rounded]:
|
||||
print(variable)
|
||||
Reference in New Issue
Block a user