//不一定要用二位数组,蛇形矩阵的行和列都有关系
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
while(cin>>n)
{
int first=1;
for(int i=1;i<=n;i++)
{
cout<<first;
int temp =first;
for(int j=i+1;j<=n;j++)
{
temp+=j;
cout<<" "<<temp;
}
cout<<endl;
first+=i;
}
}
}
HJ35 蛇形矩阵
最新推荐文章于 2024-11-12 23:33:44 发布