【java】静态方法声明与调用习题
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
本文来自博客园,作者:邓晓晖,转载请注明原文链接:https://www.cnblogs.com/isdxh/p/3631304.html