MeehoweCK

Untitled

Jul 9th, 2021
1,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int liczba;
  8.     cout << "Podaj liczbe naturalna: ";
  9.     cin >> liczba;
  10.     bool flaga = true;
  11.  
  12.     for(int i = 2; i * i <= liczba; ++i)
  13.         if(liczba % i == 0)
  14.         {
  15.             cout << liczba << " nie jest liczba pierwsza.\n";
  16.             flaga = false;
  17.             break;      // wyjście z pętli
  18.         }
  19.     if(flaga)
  20.         cout << liczba << " jest liczba pierwsza.\n";
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment