eee


私信TA

用户名:dotcpp0667155

访问量:3317

签 名:

eee

等  级
排  名 1393
经  验 2924
参赛次数 13
文章发表 59
年  龄 18
在职情况 待业
学  校 世纪阳光
专  业

  自我简介:

eee

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>


using namespace std;


typedef long long ll;


const ll N=1e3;


ll a[N][N];


int main()

{

    ll x=0,y=0;

    for(ll i=1;i<=3;i++)

    {

        for(ll j=1;j<=3;j++)

        {

            cin>>a[i][j];

            if(i==j)

            {

                x+=a[i][j];

            }

            if(i+j==4)

            {

                y+=a[i][j];

            }

        }

    }

    cout<<x<<' '<<y;

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »