#include<iostream.h>
const int N 15;
main()
{
int i,j,k,m,n;
int G[N][N];
cout<<"input the odd number you want!:"<<endl;
cin>>m;
if((m>0)&&(m%2))
{
cout<<"the number is "<<m<<endl;
n=m*m;
j=0;
k=m/2;
for(i=1;i<=n;i++)
{
if((m%i)==0)
{
if(j==m-1)
j=0;
else
j++;
}
else
{
if(j==0)
j=m-1;
else
j--;
if(k==m-1)
k=0;
else
k++;
}
}
for(i=0;i<m;i++)
{
for(j=0;j<m;j++)
{
cout<<G[i][j]<<" "<<endl;
}
}
else
cout<<"the number is error"<<endl;
}
}
这个程序不是我编的 我是查着的 我没运行呢 请大家一起研究研究吧 给小弟点意见 因为我是菜鸟一个