posts - 89, comments - 241, trackbacks - 0, articles - 1
   :: 首页 ::  :: 联系 :: 聚合  :: 管理

 

public class Test {   
   
public static void method1(int i) {   
        
if (i == 1{   
            System.out.print(
"1*1=1\t\n");   
        }
 
        
else {   
            method1(i 
- 1);   
            
for (int j = 1; j <= i; j++{
                System.out.print(j 
+ "*" + i + "=" + j * i + "\t");   
            }
   
            System.out.println();   
        }
   
    }
   

    
public static void main(String[] args) {   
        method1(
9);   
   
    }
   
   
}

以上代码等同于
public class Test {   
   
void method1(int i) {   
        
if (i == 1{   
            System.out.print(
"1*1=1\t\n");   
        }
 
        
else {   
            method1(i 
- 1);   
            
for (int j = 1; j <= i; j++{
                System.out.print(j 
+ "*" + i + "=" + j * i + "\t");   
            }
   
            System.out.println();   
        }
   
    }
   

    
public static void main(String[] args) {   
        Test a 
= new Test();
        a.method1(
9);   
   
    }
   
   
}
谁能给我讲讲吗?
呵呵,我是新手~老大们,不要bs啊~

没有所谓的命运,只有不同的选择!