Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class PBV
  2.  
  3.     public static void Add(int i){
  4.      i  = i + ;
  5.     }
  6.    
  7.     public static void main(String args[]){
  8.         int i = 0;
  9.        
  10.         System.out.println(i);
  11.         add(i);
  12.         System.out.println(i);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement