杜牧恒


私信TA

用户名:dotcpp0687248

访问量:6405

签 名:

解把飞花蒙日月,不知天地有清霜

等  级
排  名 331
经  验 5396
参赛次数 15
文章发表 169
年  龄 99
在职情况 在职
学  校 大庆一中附属第一小学
专  业 你猜

  自我简介:

人类

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

const ll N=1000;

ll a[N][N];

int main()

{

    ll n;

    cin>>n;

    for(int i=1; i<=n; i++)

    {

        for(int j=1; j<=n; j++)

        {

                cin>>a[i][j];

        }

    }

    for(int i=1;i<=n; i++)

    {

        for(int j=1; j<=n; j++)

        {

                cout<<a[j][i]<<' ' ;//行列号倒换

        }

    cout<<endl;

    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »