잉?

Codeup 1268 : n개의 수 중 짝수의 개수 본문

카테고리 없음

Codeup 1268 : n개의 수 중 짝수의 개수

Jye_647 2019. 7. 14. 22:30

https://codeup.kr/problem.php?id=1268

 

1268 : n개의 수 중 짝수의 개수

n = int(input())
nData = list(map(int, input().split()))
count = 0

for i in nData:
    if i % 2 == 0:
        count += 1

print(count)
Comments