Guest User

Untitled

a guest
Oct 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public static void main(String[] args) {
  2. Integer i = 8;
  3. inc(i);
  4. System.out.println(i);
  5. }
  6.  
  7. public static void inc(Integer i) {
  8. i++;
  9. System.out.println(i);
  10. }
Add Comment
Please, Sign In to add comment