Ответ:
1 вариант:
from math import ceil
print(ceil(float(input())))
2 вариант:
print(int(float(input())) + 1)
3 вариант:
from math import floor
print(floor(float(input()) + 1))
4 вариант:
n = float(input())
print(int(n) + (not n.is_integer()))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
1 вариант:
from math import ceil
print(ceil(float(input())))
2 вариант:
print(int(float(input())) + 1)
3 вариант:
from math import floor
print(floor(float(input()) + 1))
4 вариант:
n = float(input())
print(int(n) + (not n.is_integer()))