1784: 矩阵的对角线之和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int arr[5][5]; int …… 题解列表 2023年09月25日 0 点赞 0 评论 87 浏览 评分:0.0
矩阵的对角线之和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[5][5],sum=0,sum1=0; …… 题解列表 2023年05月07日 0 点赞 0 评论 157 浏览 评分:0.0
矩阵的对角线之和(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[5][5],i,s=0,j; …… 题解列表 2022年10月31日 0 点赞 0 评论 174 浏览 评分:9.9
矩阵的对角线之和 (C++代码) 摘要:##### 原题链接:[矩阵的对角线之和](https://www.dotcpp.com/oj/problem.php?id=1784 "矩阵的对角线之和") #### 解题思路: **1…… 题解列表 2019年07月16日 0 点赞 0 评论 1322 浏览 评分:5.3