Advertisement
MeehoweCK

Untitled

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