fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. bool czy_pierwsza(int n){
  5. int d=2;
  6. while (d*d<n){
  7. if (n%d==0) return false;
  8. d++;
  9. }
  10. return true;
  11. }
  12.  
  13. int main() {
  14. cout<<czy_pierwsza(11)<<endl;
  15. cout<<czy_pierwsza(99)<<endl;
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
1
0