Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class Main {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. Person a = new Person ("Ivan", 35);
  6. System.out.println((a.getAge());
  7.  
  8. }
  9. public static void increment(Person a) {
  10. a.getAge() = a.getAge() + 1;
  11. System.out.println(a.getAge());
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement