题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=50;int a…… 题解列表 2024年05月12日 0 点赞 0 评论 517 浏览 评分:0.0
编写题解 1024: [编程入门]矩阵对角线求 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月12日 0 点赞 0 评论 489 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月12日 0 点赞 0 评论 575 浏览 评分:0.0
编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N=50; i…… 题解列表 2024年05月12日 0 点赞 0 评论 472 浏览 评分:0.0
旧物有情 # 手算法求矩阵对角线和 ```#includeusingnamespacestd;intmain(){inta[3][3];for(inti=0;ia[i][j];}}//主对角线坐标000102//副对角线坐标021120cout 题解列表 2024年10月10日 0 点赞 0 评论 464 浏览 评分:0.0
最简单的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int arr[9]; for (int i = 0; i < 9; i++) { scanf("%d",…… 题解列表 2024年10月20日 0 点赞 0 评论 591 浏览 评分:0.0
矩阵对角线求和python 摘要:参考代码:a=[list(map(int,input().split()) ) for _ in range(3)]s,w=0,0for i in range(len(a)): &nbs…… 题解列表 2025年01月21日 0 点赞 0 评论 832 浏览 评分:0.0
T1024 矩阵对角线求和--12行代码 摘要:解题思路:注意事项:参考代码:lst=[[0]*3 for i in range(3)]x,y=0,0for i in range(3): r=inp…… 题解列表 2025年05月04日 0 点赞 0 评论 954 浏览 评分:0.0
二维数组for循环思维拓展 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; int sum1=0,sum2=0; for(i…… 题解列表 2026年06月15日 1 点赞 0 评论 158 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (Java代码) 解题思路:注意事项:参考代码:importjava.util.Scanner;importjava.text.DecimalFormat;publicclassMain{publicstaticvoidsum(){Scannersc=newScanner(System.in);while(sc.has 题解列表 2018年01月08日 3 点赞 0 评论 1229 浏览 评分:2.0