Решение
anq,
PythonВыделить код
1
2
3
4
5
6
7
8
9
10
11
#1
count = 0
while True:
n = int(input())
if n == 0:
break
elif not n % 2:
count += 1
print(count)
Добавлено через 10 минут
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#2
#Первый
l1_x = 1 #Левый угол, х
l1_y = 1 #Левый угол, у
d_x1 = 4 #Длина х
d_y1 = 5 #Длина у
#Второй
l2_x = 0
l2_y = 2
d_x2 = 3
d_y2 = 6
l3 = min(l1_x, l2_x), min(l1_y, l2_y) #Координаты левого угла
x = int(input())
s = 0
mx,mn = x, x
while x != 7:
s+=x
if x > mx:
mx = x
if x < mn:
mn = x
print("Сумма равна:",s)
print("Максимум:",mx)
print("Минимум:",mn)
Решение
anq,
PythonВыделить код
1
2
3
4
5
6
7
8
9
10
11
#1
count = 0
while True:
n = int(input())
if n == 0:
break
elif not n % 2:
count += 1
print(count)
Добавлено через 10 минут
anq,
PythonВыделить код
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#2
#Первый
l1_x = 1 #Левый угол, х
l1_y = 1 #Левый угол, у
d_x1 = 4 #Длина х
d_y1 = 5 #Длина у
#Второй
l2_x = 0
l2_y = 2
d_x2 = 3
d_y2 = 6
l3 = min(l1_x, l2_x), min(l1_y, l2_y) #Координаты левого угла
x = int(input())
s = 0
mx,mn = x, x
while x != 7:
s+=x
if x > mx:
mx = x
if x < mn:
mn = x
x = int(input())
print("Сумма равна:",s)
print("Максимум:",mx)
print("Минимум:",mn)