728x90
1) 주석 없는 VERSION
#include <stdio.h>
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
int main() {
int n;
cin >> n;
int array[100] = { 0, };
int cnt = n;
for (int i = 0;i < n;i++) {
cin >> array[i];
if (array[i] == 1) {
cnt--;
}
}
for (int i = 0;i < n;i++) {
for (int j = 2;j <= sqrt(array[i]);j++) {
if (array[i] % j == 0) {
cnt--;
break;
}
}
}
cout << cnt;
}
2) 주석 있는 VERSION
//에라토스테네스의 소수 필요 충분조건은 그 숫자가 2보다 크면서
//자기 자신의 제곱근까지의 수에 나눠지지 않는 수
#include <stdio.h>
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
int main() {
//에라토스테네스의 소수 필요 충분조건은 그 숫자가 2보다 크면서
//자기 자신의 제곱근까지의 수에 나눠지지 않는 수
int n;
cin >> n;
int array[100] = { 0, };
int cnt = n;
for (int i = 0;i < n;i++) {
cin >> array[i]; // array에 숫자들 입력해주기
if (array[i] == 1) { // 1은 소수가 아니므로 count 빼기
cnt--;
}
}
for (int i = 0;i < n;i++) {
//2보다 크면서 그 수의 제곱근보다 작을 때까지의 수에 나누어 지는 수 count 빼기
for (int j = 2;j <= sqrt(array[i]);j++) {
if (array[i] % j == 0) {
cnt--;
break;
}
}
}
cout << cnt;
}
'BEAKJOON' 카테고리의 다른 글
백준(11653번 소인수분해)풀이 C++ (0) | 2021.01.13 |
---|---|
백준(2581번 소수)풀이 C++ (0) | 2021.01.13 |
백준(1011번 Fly me to the Alpha Centauri)풀이 C++ (0) | 2021.01.13 |
백준(10757번 큰 수 A+B)풀이 C++ (0) | 2021.01.13 |
백준(2839번 설탕 배달)풀이 C++ (0) | 2021.01.13 |