1024: [编程入门]矩阵对角线求和 摘要:#include<stdio.h> int main() { int ls[9],ind; for(int i=0;i<9;i++){ scanf("%d",&ind); ls…… 题解列表 2022年06月09日 0 点赞 0 评论 183 浏览 评分:0.0
[编程入门]矩阵对角线求和【C++版】 摘要:解题思路:首先需要寻找矩阵的规律,主对角线元素的横纵坐标相同,副对角线元素的横纵坐标相加等于矩阵的行数(列数),定义变量i、j分别表示矩阵的横纵坐标,定义变量sum1,sum2分别表示主对角线元素的和…… 题解列表 2022年06月04日 0 点赞 0 评论 905 浏览 评分:7.8
[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[5][5],x,y;//定义一个二维数组int main(){ for(…… 题解列表 2022年05月24日 0 点赞 0 评论 94 浏览 评分:0.0
[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[15],s,t;int main(){ for(int i=…… 题解列表 2022年05月20日 0 点赞 0 评论 72 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:import java.io.*; /** * 主对角线元素行坐标等于列坐标,副对角线元素行坐标加列坐标等于阶数减一。 */ public class Main { pu…… 题解列表 2022年05月11日 0 点赞 0 评论 125 浏览 评分:0.0
矩阵对角线求和(C++) 摘要:解题思路:注意事项:是C++语言!!!要用#include参考代码:#includeusing namespace std;int s, t;int main(){ for (int i…… 题解列表 2022年05月11日 0 点赞 1 评论 211 浏览 评分:7.3
三阶矩阵对角线求和 摘要:#include int main() { int a[9],x,y,sum=0,s=0,i; for(i=0;i…… 题解列表 2022年05月10日 0 点赞 0 评论 156 浏览 评分:0.0
矩阵对角线求和 题解(c++) 摘要:解题思路:先输入,再直接输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55][55];int main(){ for(…… 题解列表 2022年05月08日 0 点赞 0 评论 216 浏览 评分:0.0
[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[10][10],t,s;int main(){ for(int i…… 题解列表 2022年05月06日 0 点赞 0 评论 75 浏览 评分:0.0
矩阵对角线求和 摘要:解题思路:暴力枚举注意事项:注意数组的起始项参考代码:#include<bits/stdc++.h>using namespace std;long long a[15],s,t;int main()…… 题解列表 2022年05月06日 0 点赞 0 评论 81 浏览 评分:0.0