输出循环移位方阵,,,哪里不对啊??
输出循环移位方阵。设一个一维数组的元素值为:7 4 8 9 1 5,输出具有以下内容的方阵
7 4 8 9 1 5
5 7 4 8 9 1
1 5 7 4 8 9
9 1 5 7 4 8
8 9 1 5 7 4
4 8 9 1 5 7
public class yi_wei {
public static int yiwei(int a[])
{
a=new int [a.length];
int b[]=new int[a.length];
System.arraycopy(a,0,b,1,5);
b[0]=a[a.length-1];
return b[a.length];
}
public static void main(String[] args)
{
int a[]={7,4,8,9,1,5};
for(int i=0;i<a.length-1;i++)
{
System.out.println();
}
}
}