Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Incrementor {
- private static void increment(int i){
- i++;
- }
- public static void main(String[] args){
- int value = 0;
- for(int i = 0; i < 10; i++){
- increment(value);
- System.out.println(value);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment