Guest User

Untitled

a guest
Jul 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Basics {
  2.  
  3. static int x = 1;
  4.  
  5. void m(int i) {
  6. x++;
  7. i++;
  8. }
  9.  
  10. public static void main(String[] args) {
  11. int y = 3;
  12. m(y);
  13. System.out.println(x + "," + y);
  14. }
  15. }
Add Comment
Please, Sign In to add comment