0
已解决
范皓翔
初级光能
初级光能
- #include<iostream>
- using namespace std;
- int a[11][11],n,zhu,fu;
- int main()
- {
- cin>>n;
- for(int i=1;i<=n;i++){
- for(int j=1;j<=n;j++){
- cin>>a[i][j];
- if(i+j==n+1){
- fu+=a[i][j];
- cout<<a[i][j]<<" ";
- }
- }
- }
- cout<<endl<<fu;
- return 0;
- }
-
-
10分
-
-
题目描述 Description
给你一个n*n的方阵,请你找到该方阵的副对角线的所有元素,并且求这些元素的总和
输入描述 Input Description
第一行:n,1<n<40
接下来是一个n*n的方阵输出描述 Output Description
第一行:方阵的副对角线的元素,以空格间隔
第二行:所有副对角线上的元素的和样例输入 Sample Input
3 66 46 94 100 75 38 64 24 28
样例输出 Sample Output
94 75 64 233