Advertisement
Guest User

Untitled

a guest
May 19th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int p;
  7. cout<<"Wprowadz liczbe: ";
  8. cin>>p;
  9.  
  10. for(int dz=2; dz<p; dz++)
  11. {
  12. if(p%dz==0)
  13. {
  14. cout<<"Liczba "<<p<<" nie jest liczba pierwsza"<<endl;
  15. return 0;
  16. }
  17. }
  18. cout<<"Liczba "<<p<<" jest liczba pierwsza"<<endl;
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement