c代码记录之矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int num[3][3],i,j,sum1=0,sum2=0; for(i=0;i<3;i++…… 题解列表 2023年11月07日 0 点赞 0 评论 171 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<cstdio> int a[15]; int main() { for(int i=1;i<=9;i++) scanf("%…… 题解列表 2023年09月24日 0 点赞 0 评论 167 浏览 评分:9.9
矩阵对角线简单求和 摘要:解题思路:写出对角线的数组对应下标,不难发现规律注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,j,m=0,k=0; for(i=0;i<3;…… 题解列表 2023年09月23日 0 点赞 0 评论 251 浏览 评分:9.9
矩阵对角线求和简单解决 摘要:解题思路:主对角线特征:i=j副对角线特征:i+j=阶数注意事项:无参考代码:#include <stdio.h>int main (int argc, char *argv[]){ int s…… 题解列表 2023年08月20日 0 点赞 0 评论 213 浏览 评分: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 评论 428 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int sum=0,…… 题解列表 2023年07月20日 0 点赞 0 评论 159 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:硬加法注意事项:参考代码:#include <iostream>using namespace std;int n,m,a[100][100],sum=0,b=0;int main(){ …… 题解列表 2023年07月20日 0 点赞 0 评论 217 浏览 评分:9.9
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:#include<iostream>using namespace std;int main(){ int s[3][3],sum1=0,sum2=0; for(int…… 题解列表 2023年07月20日 0 点赞 0 评论 386 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:一眼看出结构注意事项:参考代码:#include<stdio.h>int main() { int a[9] = { 0,0,0,0,0,0,0,0,0 },i=0,c=0; scanf("…… 题解列表 2023年07月19日 0 点赞 0 评论 157 浏览 评分:0.0
懒人求解法 摘要:解题思路:数组快速计算结果注意事项:数组不要越界访问参考代码:#include<stdio.h>int main(){ int a[9],b; for(b=0;b<9;b++) { …… 题解列表 2023年07月06日 0 点赞 0 评论 191 浏览 评分:9.9