Advertisement
Guest User

GoesToOperator

a guest
Sep 16th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. /**
  2.  * User: Tom Byrne
  3.  * "If I am unable to see, it is because
  4.  * I am being stood upon by giants."
  5.  */
  6. public class GoesToOperator {
  7.  
  8.     public static void main(String[] args) {
  9.         int x = 10;
  10.  
  11.         while (x --> 0){// while X goes to 0
  12.             System.out.println("x value is going:"+x);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement