Ответы
Ответ дал:
1
Ответ:
a = int(input())
b = 0
while a != 0:
b += a
a = int(input())
print(b)
Это Python.
2 задача:
a = input()
b = 0
while a != '0':
if a.endswith('3') and len(a) == 2:
b += 1
a = input()
print(b)
3 задача:
a = int(input())
b = 0
while a != 0:
if a % 2 == 0 and a > b:
b = a
a = int(input())
print(b)
D123456789lk:
только пробелы надо поставить
b = 0
while a != 0:
if a % 2 == 0 and a > b:
b = a
a = int(input())
print(b)
Вас заинтересует
1 год назад
2 года назад
2 года назад
7 лет назад
9 лет назад