【java】静态方法声明与调用习题

 public class dengd {
static int getTt(int table[])
{
for(int b=0; b<table.length;b++)
{
System.out.print(table[b]+" ");
}
return 0; }
public static void main(String args[])
{ int tt[]={2,4,6,8,10};
getTt(tt);
} }

输出  2 4 6 8 10

上一篇:【BZOJ3531】旅行(树链剖分,线段树)


下一篇:html5——自定义属性