Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package operator;
  2.  
  3. public class IncDecOP {
  4.  
  5. public static void main(String[] args) {
  6. int m = 50, n = 30;
  7. System.out.printf("%d %d %n", m--, n++); // 50 30
  8. System.out.printf("%d %d %n", m, n); // 49 31
  9. System.out.printf("%d %d %n", --m, ++n); // 48 32
  10. System.out.printf("%d %d %n", m, n); // 48 32
  11.  
  12.  
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement