Advertisement
yeskendir_sultanov

Простой поиск простых чисел

May 18th, 2024
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. #define pb push_back
  4.  
  5. using namespace std;
  6.  
  7. bool isPrime(int n) {
  8.     if (n < 2) {
  9.         return false;
  10.     }
  11.    
  12.     for (int i = 2; i * i <= n; ++i) {
  13.         if (n % i == 0) {
  14.             return false;
  15.         }    
  16.     }
  17.    
  18.     return true;
  19. }
  20.  
  21. int main() {
  22.     int m, n;
  23.     cin >> m >> n;
  24.     int cnt = 0;
  25.     for (int i = m; i <= n; ++i) {
  26.         if (isPrime(i)) {
  27.             cnt++;
  28.             cout << i << " ";
  29.         }    
  30.     }
  31.    
  32.     if (cnt == 0) {
  33.         cout << "Absent";
  34.     }
  35.     return 0;
  36. }
  37.  
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement