Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class HelloWorld{
  2.  
  3. public static void main(String []args){
  4. int i = 100;
  5. do{
  6. if (i % 2 ==0 ){
  7. System.out.println("4islo " + i + " parne");
  8. }else{
  9. i--;
  10. System.out.println("4islo " + i + " nevpanre");
  11. }
  12.  
  13. }while (i >= 0);
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement