题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=50;int a…… 题解列表 2024年05月12日 0 点赞 0 评论 393 浏览 评分: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 评论 341 浏览 评分: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 评论 455 浏览 评分:0.0
编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N=50; i…… 题解列表 2024年05月12日 0 点赞 0 评论 348 浏览 评分:0.0
旧物有情 # 手算法求矩阵对角线和 摘要:``` #include using namespace std; int main(){ int a[3][3]; for(int i=0; ia[i]…… 题解列表 2024年10月10日 0 点赞 0 评论 343 浏览 评分:0.0
最简单的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int arr[9]; for (int i = 0; i < 9; i++) { scanf("%d",…… 题解列表 2024年10月20日 0 点赞 0 评论 447 浏览 评分: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 评论 658 浏览 评分: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 评论 705 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;import java.text.DecimalFormat;public class Main { public st…… 题解列表 2018年01月08日 3 点赞 0 评论 984 浏览 评分:2.0
你有见过这么帅又这么干练的未来it人才吗 摘要:解题思路:利用二维数组输入矩阵,再求和注意事项:我很帅参考代码:#include<stdio.h>int main(){int a[3][3];int i,j;for(i=0;i<3;i++)for(…… 题解列表 2022年11月03日 0 点赞 0 评论 352 浏览 评分:2.0