https://www.acmicpc.net/problem/1929
#include <iostream>
#include <math.h>
using namespace std;
int main() {
cin.tie(NULL);
ios::sync_with_stdio(false);
long long m,n;
cin >> m >> n;
long long cnt=2,flag=0;
for (int i = m; i <= n; i++) {
while (cnt <= sqrt(i)) {
if (i%cnt == 0) {
flag = 1;
break;
}
cnt++;
}
if (i == 1)
flag = 1;
if (flag == 0)
cout << i << "\n";
cnt = 2;
flag = 0;
}
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 10797번 : 10부제 (0) | 2019.02.26 |
---|---|
[C++] 백준 1158번 : 조세퍼스 문제 (0) | 2019.02.24 |
[C++] 백준 11050번 : 이항 계수 1 (0) | 2019.02.21 |
[C++] 백준 10872번 : 팩토리얼 (0) | 2019.02.21 |
[C++] 백준 10808번 : 알파벳 개수 (0) | 2019.02.21 |