Ответ:
year = int(input())
if(year % 400 == 0 and year % 100 != 0):
print("YES")
elif(year % 100 == 0):
else:
print("NO")
mark = float(input())
if(mark <= 3):
print("Начальний бал")
elif(mark >= 4 and mark <= 6):
print("Середній бал")
elif(mark >= 7 and mark <= 9):
print("Достатній бал")
print("Високий бал")
y = float(input())
w = float(input())
h = int(input())
hs = str(h)[1:]
h_ = int(hs)
if(y < 25 and w == h_-5):
print("Ідеальна вага.")
elif(y <= 25 and w <= h_-5):
print("Недостатня вага")
elif(y <= 25 and w>h_-5):
print("Надлишкова вага")
elif(y>25 and y<=45 and w==h_):
print("Ідеальна вага")
elif(y>25 and y<=45 and w<h_):
elif(y>25 and y<=45 and w>h_):
elif(y > 45 and w==h_+5):
elif(y >45 and w<=h_+5):
elif(y >45 and w>=h_+5):
k_while = int(input())
k_wanted = int(input())
m = float(input())
k_can = k_wanted/k_while
k_time =k_can*m
print(f"{k_wanted} котлет будуть обсмажуватися {k_time} хвилин.")
Объяснение:
Сподіваюсь що допомогла.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
-----Year.py
year = int(input())
if(year % 400 == 0 and year % 100 != 0):
print("YES")
elif(year % 100 == 0):
print("YES")
else:
print("NO")
-----Marks.py
mark = float(input())
if(mark <= 3):
print("Начальний бал")
elif(mark >= 4 and mark <= 6):
print("Середній бал")
elif(mark >= 7 and mark <= 9):
print("Достатній бал")
else:
print("Високий бал")
-----Ideal Weight.py
y = float(input())
w = float(input())
h = int(input())
hs = str(h)[1:]
h_ = int(hs)
if(y < 25 and w == h_-5):
print("Ідеальна вага.")
elif(y <= 25 and w <= h_-5):
print("Недостатня вага")
elif(y <= 25 and w>h_-5):
print("Надлишкова вага")
elif(y>25 and y<=45 and w==h_):
print("Ідеальна вага")
elif(y>25 and y<=45 and w<h_):
print("Недостатня вага")
elif(y>25 and y<=45 and w>h_):
print("Надлишкова вага")
elif(y > 45 and w==h_+5):
print("Ідеальна вага")
elif(y >45 and w<=h_+5):
print("Недостатня вага")
elif(y >45 and w>=h_+5):
print("Надлишкова вага")
-----Cooker.py
k_while = int(input())
k_wanted = int(input())
m = float(input())
k_can = k_wanted/k_while
k_time =k_can*m
print(f"{k_wanted} котлет будуть обсмажуватися {k_time} хвилин.")
Объяснение:
Сподіваюсь що допомогла.