编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ int i,a[9]; for(i=0;i<9;i++) { scanf("%d",&a[i]);…… 题解列表 2022年12月05日 0 点赞 0 评论 461 浏览 评分:9.9
编写题解 1024: [编程入门]矩阵对角线求和 适合新手理解体会 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main() { int k,p=0; int a[…… 题解列表 2023年01月07日 0 点赞 0 评论 71 浏览 评分:0.0
指针入门_c语言求对角线矩阵和 摘要:#include <stdio.h> int main() { int a[3][3]; int *p = a[0]; for(int i = 0; i < 9;…… 题解列表 2023年01月10日 0 点赞 0 评论 47 浏览 评分:0.0
简单易懂矩阵对角线求和 摘要:解题思路:数组,循环,条件注意事项:输入数组时格式为a[i][j],a或a[3][3]都是错的参考代码:#include<stdio.h>int main(){ int i,j,a[3][3]; in…… 题解列表 2023年01月15日 0 点赞 0 评论 63 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路和注意事项:这道题还是蛮简单,首先要求求一个矩阵的主副对角线的元素和,那肯定要用到的就是多维数组。 多维数组的形式应该为:array[i][j];知道这个后我们开始分析题目: …… 题解列表 2023年02月12日 0 点赞 0 评论 157 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:```cpp #include using namespace std; /* 求一个3×3矩阵对角线元素之和。 输入格式 矩阵 输出格式 主对角线 副对角线 元素和 样例输入 1…… 题解列表 2023年02月19日 0 点赞 1 评论 196 浏览 评分:9.9
如何计算副对角线 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { int a[3][3]; for(int i …… 题解列表 2023年03月10日 0 点赞 0 评论 160 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:#include<stdio.h> int main() { int a[3][3]; int m,n; for(m=0;m<3;) { …… 题解列表 2023年03月13日 0 点赞 0 评论 51 浏览 评分:0.0
矩阵对角线求和 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))b = list(map(int,input().split()))c = list(map(int,…… 题解列表 2023年04月03日 0 点赞 0 评论 75 浏览 评分:0.0
1024题: 矩阵对角线求和 摘要:# 自己写的代码 ```c #include int main() { int a[3][3]; int i,j,sum1 = 0,sum2 = 0; for(i…… 题解列表 2023年05月05日 0 点赞 0 评论 124 浏览 评分:0.0