Guest User

Incrementor Demo

a guest
Feb 3rd, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Incrementor {
  2.  
  3.     private static void increment(int i){
  4.     i++;
  5.     }
  6.  
  7.     public static void main(String[] args){
  8.     int value = 0;
  9.     for(int i = 0; i < 10; i++){
  10.         increment(value);
  11.         System.out.println(value);
  12.     }
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment