Advertisement
ArturCzopek

java-02-inc-dec

Apr 9th, 2017
1,388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.12 KB | None | 0 0
  1. int myInt1 = 10;
  2. int myInt2 = 20;
  3.  
  4. System.out.println(++myInt1); // wypisze 11
  5. System.out.println(myInt2--); // wypisze 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement