Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class Prime
  2. {
  3. public static void main(String[] args)
  4. {
  5. int i;
  6. int stevilo=20;
  7. boolean pra=true;
  8.  
  9. for(i=2;i<stevilo;i++)
  10. {
  11. if(stevilo%i==0)
  12. {
  13. pra=false;
  14. break;
  15.  
  16.  
  17.  
  18. }
  19.  
  20.  
  21. }
  22. if (pra=true)
  23. System.out.print("stevilo je prastevilo");
  24. if (pra=false)
  25. System.out.print("Stevilo ni prastevilo");
  26.  
  27. }
  28.  
  29. }
Add Comment
Please, Sign In to add comment