반응형
import java.util.Scanner;
public class Main{
public static boolean is_Prime(int n) {
if(n == 1) {
return false;
}
for(int i =2; i< n; i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int cnt = 0;
for(int i = 0; i<n; i++){
int input = sc.nextInt();
if(is_Prime(input) == true)
cnt ++;
}
System.out.println(cnt);
}
}
'CodingTest > 백준' 카테고리의 다른 글
[백준/python] 2941번 문제 크로아티아 알파벳 (0) | 2021.11.01 |
---|---|
[백준/Python] 5622번 문제 다이얼 (0) | 2021.10.26 |
[백준/Python] 2909번 문제 상수 (0) | 2021.10.25 |
[백준/python] 2675번 문제 문자열 반복 (0) | 2021.10.21 |
[백준/Python] 10809번 문제 알파벳 찾기 (0) | 2021.10.21 |