n = int(input())
numberList = map(int, input().split())
count = 0
for i in numberList:
decimalCheck = True
for j in range(2,i):
if(i%j == 0):
decimalCheck = False
break
if decimalCheck == True and i != 1 :
count += 1
print(count)
실행결과
반응형
'코딩연습장' 카테고리의 다른 글
[python] FizzBizzBuzz TEST (0) | 2021.02.13 |
---|---|
[python] Tic-Tac-Toe 게임 (0) | 2021.02.12 |
[python] 단어 맞추기 게임 (0) | 2021.02.08 |
[python] 야구 게임 만들기 (0) | 2021.02.07 |
[python] 숫자 맞추기 게임 (0) | 2021.02.07 |
댓글