1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int sum=0,…… 题解列表 2023年07月20日 0 点赞 0 评论 79 浏览 评分: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 评论 96 浏览 评分: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 评论 117 浏览 评分: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 评论 59 浏览 评分:0.0
懒人求解法 摘要:解题思路:数组快速计算结果注意事项:数组不要越界访问参考代码:#include<stdio.h>int main(){ int a[9],b; for(b=0;b<9;b++) { …… 题解列表 2023年07月06日 0 点赞 0 评论 89 浏览 评分:9.9
矩阵对角线求和 摘要:解题思路:用数组来接收注意对角线和副对角线的i,j的位置关系对角线:i==j副对角线:j==2-i&&j>=0注意事项:希望各位大佬指出不足的地方参考代码://求一个3×3矩阵对角线元素之和。//用数…… 题解列表 2023年05月31日 0 点赞 0 评论 82 浏览 评分:0.0
[编程入门]矩阵对角线求和 摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { int a[3][3]; int i, j, s1 = 0, s2 = 0; for (i = …… 题解列表 2023年05月19日 0 点赞 0 评论 78 浏览 评分:9.9
[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[3][3]; for(int i=0…… 题解列表 2023年05月17日 0 点赞 0 评论 70 浏览 评分: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 评论 120 浏览 评分:0.0
矩阵对角线求和 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))b = list(map(int,input().split()))c = list(map(int,…… 题解列表 2023年04月03日 0 点赞 0 评论 68 浏览 评分:0.0