[ 백준 ] 1929번 소수 구하기
문제
https://www.acmicpc.net/problem/1929
풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include <cmath>
using namespace std;
bool decimal(int m)
{
if (m < 2) // 1은 소수 X
{
return false;
}
int a = (int)sqrt(m); //약수는 본인의 루트값보다 클수 없으므로 범위를 줄임
for (int i = 2; i <= a; i++)
{
if (m % i == 0)
{
return false;
}
}
return true;
}
int main()
{
int m, n;
cin >> m >> n;
for (; m <= n; m++) // m~n 수 표출
{
bool isPos = decimal(m);
if (isPos)
{
printf("%d\n", m);
}
}
return 0;
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.