计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; int sum=0; scanf("%d %d",&n,&m); in…… 题解列表 2022年11月17日 0 点赞 0 评论 364 浏览 评分:6.7
2878: 计算矩阵边缘元素之和 摘要:解题思路:先去除四个角的元素,然后再把它们加上。注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int…… 题解列表 2022年11月07日 0 点赞 0 评论 238 浏览 评分:6.0
c语言代码易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int m,n,sum=0; scanf ("%d %d",…… 题解列表 2024年12月04日 0 点赞 0 评论 157 浏览 评分:2.0
参考蛇形矩阵果然还是有进步的加油 摘要:解题思路:注意事项:参考代码:https://www.dotcpp.com/oj/problem2878.html?sid=12078674&lang=6#editor l1=[]#渐渐的我也学会了用…… 题解列表 2023年05月09日 0 点赞 1 评论 215 浏览 评分:0.0
计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int n,m,su…… 题解列表 2023年07月20日 0 点赞 0 评论 204 浏览 评分:0.0
2878: 计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().strip().split())l = []for i in range(a): t = list(map(int,in…… 题解列表 2024年08月04日 0 点赞 0 评论 162 浏览 评分:0.0
2878: 计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:m, n = map(int, input().split()) arr = [] for _ in range(m): arr.append(list(m…… 题解列表 2024年03月29日 0 点赞 1 评论 124 浏览 评分:0.0
2878: 计算矩阵边缘元素之和(C语言) 摘要: #include int main() { int m, n; scanf("%d %d", &m, &n); int a[m][n]; for (int i =…… 题解列表 2023年08月01日 0 点赞 0 评论 156 浏览 评分:0.0
计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; int i=0,j=0; int a[100][100]={0}; i…… 题解列表 2022年10月25日 0 点赞 0 评论 852 浏览 评分:0.0
鬼知道我写了多少遍 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;ll a…… 题解列表 2024年05月04日 0 点赞 0 评论 72 浏览 评分:0.0