Advertisement
Guest User

Untitled

a guest
May 28th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class Increment{
  2. public static void main(String[] args) {
  3. int a = 1;
  4. int b = 1;
  5. System.out.print(a++ + " ");
  6. System.out.print(++b + " ");
  7. System.out.print(a + " ");
  8. System.out.print(b + " ");
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement