Advertisement
Guest User

Untitled

a guest
May 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. x =0;
  2.  
  3. if(sprawdzenieCzyLiczbaPierwsza(liczbaInt))
  4. {
  5. wynik.setText("jest liczba pierwsza");
  6. }
  7. else
  8. {
  9. for (int i = liczbaInt; i> 0; i-- )
  10. {
  11.  
  12. if(sprawdzenieCzyLiczbaPierwsza(i ))
  13. {
  14. wynik.setText("Nie jest liczba pierwsza");
  15. liczbaNajb.setText(i + "");
  16.  
  17.  
  18. }
  19. else if (sprawdzenieCzyLiczbaPierwsza(i + x))
  20. {
  21.  
  22. wynik.setText("Nie jest liczba pierwsza");
  23. liczbaNajb.setText(i + x +"");
  24. }
  25. x =+2;
  26.  
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement