Решение на Python 3.6:
N = int(input()) #Вводится число элементов массива
arr = [int(input()) for i in range(N)] #Вводятся сами элементы
count = 0 #Считает количество элементов, кратных 4
for elem in arr:
if elem % 4 == 0:
count += 1
print(count)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Решение на Python 3.6:
N = int(input()) #Вводится число элементов массива
arr = [int(input()) for i in range(N)] #Вводятся сами элементы
count = 0 #Считает количество элементов, кратных 4
for elem in arr:
if elem % 4 == 0:
count += 1
print(count)