Сделал на Python (надо было уточнять)
Объяснение:
even_count = 0
odd_count = 0
for i in range(12):
num = int(input())
if num % 2 == 0:
even_count += 1
else:
odd_count += 1
print(even_count)
print(odd_count)
Сделал на Python (надо было уточнять)
Объяснение:
even_count = 0
odd_count = 0
for i in range(12):
num = int(input())
if num % 2 == 0:
even_count += 1
else:
odd_count += 1
print(even_count)
print(odd_count)