Untitled
Guest 1,547 16th Aug, 2022
#include<iostream>
using namespace std;
int main()
{
int n;
bool test =true;
cout<<"Podaj liczbę: ";
cin>>n;
if(n<2){
cout<<"to nie jest licza pierwsza";
test = false;
}
for(int i=2;i<n;i++)
if(n%i==0){
cout<<"to nie jest licza pierwsza"<<endl;
test = false;
break;
}
if(test != false)
cout<<"to jest licza pierwsza";
return 0;
}
To share this paste please copy this url and send to your friends
RAW Paste Data