fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. bool czy_pierwsza(int i) {
  5. }
  6.  
  7. int pierwsza(int n) {
  8. int numer = 0;
  9. int i = 2;
  10. while (numer != n) {
  11. if (czy_pierwsza(i)) numer += 1;
  12. i += 1;
  13. }
  14. return i - 1;
  15. }
  16.  
  17. int main() {
  18.  
  19. cout << pierwsza(9) << " " << pierwsza(29) << endl;
  20. return 0;
  21. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
Standard output is empty