Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Ex8s6 {
  2.     public static void main(String[] shalom){
  3.         int n=0;
  4.         for(int i =0;i<5;i++){
  5.             n = f(n++);
  6.         }
  7.             System.out.println(n);
  8.     }
  9.         public static int f(int n){
  10.             return n++;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement