Зробити на Python 30 балов
Ответы
a = int(input("Введіть середній бал"))
v = 5
c = input("Чи відвідував учень шкільні предметні гуртки")
h = input("Чи відвідував учень шкільні спортивні гуртки")
g = input("Чи відвідував шкільку театрільну студію")
if a>=10:
b = 10
if c =="так" and g =="так" and h =="так":
G = b+v*3
print(G)
if c =="так" and g == "ні" and h == "ні":
F = b+v
print(F)
if c =="ні" and g == "так" and h == "ні":
F = b+v
print(F)
if c =="ні" and g == "ні" and h == "так":
F = b+v
print(F)
if c =="ні" and g == "так" and h == "так":
H = b+v*2
print(H)
if c =="так" and g == "ні" and h == "так":
H = b+v*2
print(H)
if c =="так" and g == "так" and h == "ні":
H = b+v*2
print(H)
else:
print(b)
if a>7 and a<10:
s = 7
if c =="так" and g =="так" and h =="так":
GG = s+v*3
print(GG)
if c =="так" and g == "ні" and h == "ні":
FF = s+v
print(FF)
if c =="ні" and g == "ні" and h == "так":
FF = s+v
print(FF)
if c =="ні" and g == "так" and h == "так":
HH = s+v*2
print(HH)
if c =="так" and g == "ні" and h == "так":
HH = s+v*2
print(HH)
if c =="так" and g == "так" and h == "ні":
HH = s+v*2
print(HH)
else:
print(s)
if a>4 and a<7:
q = 4
if c =="так" and g =="так" and h =="так":
GG = q+v*3
print(GG)
if c =="так" and g == "ні" and h == "ні":
FF = q+v
print(FF)
if c =="ні" and g == "ні" and h == "так":
FF = q+v
print(FF)
if c =="ні" and g == "так" and h == "так":
HH = q+v*2
print(HH)
if c =="так" and g == "ні" and h == "так":
HH = q+v*2
print(HH)
if c =="так" and g == "так" and h == "ні":
HH = q+v*2
print(HH)
else:
print(q)
if a<4:
z = 1
if c =="так" and g =="так" and h =="так":
GG = z+v*3
print(GG)
if c =="так" and g == "ні" and h == "ні":
FF = z+v
print(FF)
if c =="ні" and g == "ні" and h == "так":
FF = z+v
print(FF)
if c =="ні" and g == "так" and h == "так":
HH = z+v*2
print(HH)
if c =="так" and g == "ні" and h == "так":
HH = z+v*2
print(HH)
if c =="так" and g == "так" and h == "ні":
HH = z+v*2
print(HH)
else:
print(z)