[编程入门]矩阵对角线求和 (C语言代码) 摘要:解题思路:先完成矩阵的输入,在发现矩阵的特殊之处:对角线位置下标有规律注意事项:参考代码:#include<stdio.h>int main(){ int i,j,a[3][3],sum1=0,sum…… 题解列表 2019年05月14日 0 点赞 0 评论 457 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:解题思路:硬加法注意事项:参考代码:#include <iostream>using namespace std;int n,m,a[100][100],sum=0,b=0;int main(){ …… 题解列表 2023年07月20日 0 点赞 0 评论 98 浏览 评分:9.9
编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:my_list=[]for m in range(3): j=[] a,b,c=map(int,input().split()) j.append(a)…… 题解列表 2022年07月02日 0 点赞 0 评论 660 浏览 评分:9.9
最简单对角线求和方式 摘要:解题思路:一眼就懂注意事项:无参考代码:#include <stdio.h>#include <math.h>#include <stdbool.h>int main(){ int a[3][3]; …… 题解列表 2024年03月29日 0 点赞 0 评论 143 浏览 评分:9.9
[编程入门]矩阵对角线求和 摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { int a[3][3]; int i, j, s1 = 0, s2 = 0; for (i = …… 题解列表 2023年05月19日 0 点赞 0 评论 82 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(int argc, const char * argv[]) { int a[9]; int i1,i2…… 题解列表 2017年08月14日 6 点赞 2 评论 1346 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路和注意事项:这道题还是蛮简单,首先要求求一个矩阵的主副对角线的元素和,那肯定要用到的就是多维数组。 多维数组的形式应该为:array[i][j];知道这个后我们开始分析题目: …… 题解列表 2023年02月12日 0 点赞 0 评论 157 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int sum,sum1; for…… 题解列表 2023年07月20日 0 点赞 0 评论 330 浏览 评分:9.9
4√最强懵逼学员 摘要:解题思路:按部就班,不用花里胡哨注意事项:参考代码:#include<stdio.h>main(){ int a[3][3]; int i,j,b,c; for(i=0;i<=2;i…… 题解列表 2022年03月30日 0 点赞 3 评论 441 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:小弟代码先奉上为敬: a = list(map(int,input().split()))b = list(map(i…… 题解列表 2022年05月02日 0 点赞 0 评论 845 浏览 评分:9.9