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
2022-05-30 22:35:42
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