题解 1024: [编程入门]矩阵对角线求和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

如何计算副对角线

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() {    int a[3][3];    for(int i ……

矩阵求和-C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){     int a[3][3],i,j;     int sum=0,count=0;     for(i=0……

[编程入门]矩阵对角线求和

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[10][10],t,s;int main(){    for(int i……