Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public class unary
  2. {
  3. public static void main(String[] arg)
  4. {
  5. int a=9;
  6. System.out.println(++a);
  7. System.out.println(a++);
  8. System.out.println(--a);
  9. System.out.println(a--);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement