1 public class dengd { 2 static int getTt(int table[]) 3 { 4 for(int b=0; b<table.length;b++) 5 { 6 System.out.print(table[b]+" "); 7 } 8 return 0; 9 10 } 11 public static void main(String args[]) 12 { 13 14 int tt[]={2,4,6,8,10}; 15 getTt(tt); 16 } 17 18 19 }
输出 2 4 6 8 10