以下のプログラムは0~9の数字を印刷します



  
  
  
  
  1. /** 
  2.  *  
  3.  *  
  4.  *  0~9  
  5.  * @author Administrator 
  6.  * 
  7.  */ 
  8. public class test5 { 
  9.  
  10.     /** 
  11.      * @param args 
  12.      */ 
  13.     public static void main(String[] args) { 
  14.         // TODO Auto-generated method stub 
  15.         f(09); 
  16.     } 
  17.     public static void f(int beign,int end ) { 
  18.         if (beign>end) {          //  
  19.             return
  20.         } 
  21.         System.out.println(beign); 
  22.         f(beign+1, end); 
  23.     } 
  24.