1024: [编程入门]矩阵对角线求和 摘要:解题思路:硬加法注意事项:参考代码:#include <iostream>using namespace std;int n,m,a[100][100],sum=0,b=0;int main(){ …… 题解列表 2023年07月20日 0 点赞 0 评论 454 浏览 评分: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 评论 674 浏览 评分:9.9
2883: 矩阵加法 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,m,a[100][100],b[100][100];int main(…… 题解列表 2023年07月20日 0 点赞 0 评论 490 浏览 评分:9.9
2883: 矩阵加法 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int b[100][100];int main(…… 题解列表 2023年07月20日 0 点赞 0 评论 384 浏览 评分:9.9
2881: 图像相似度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,m,a[100][100],b[100][100];int main(…… 题解列表 2023年07月20日 0 点赞 0 评论 486 浏览 评分:9.9
2881: 图像相似度 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int b[100][100];int main(){ int …… 题解列表 2023年07月20日 0 点赞 0 评论 472 浏览 评分:9.9
2878: 计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ int arr[256][101] = { 0 }; int a, b; int …… 题解列表 2023年07月20日 0 点赞 0 评论 484 浏览 评分:9.9
2883: 矩阵加法 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int b[100][100];int main(){ int …… 题解列表 2023年07月20日 1 点赞 10 评论 474 浏览 评分:9.9
图像旋转C++ 摘要:### ***图像旋转C++*** ##### 先五星后复制 栓Q >输入一个n行m列的黑白图像,将它顺时针旋转90度后输出。 ###### 好嘛 题目其实是偏简单一些的 试着动动脑没准就做…… 题解列表 2023年07月20日 0 点赞 0 评论 602 浏览 评分:9.9
贪心,排序+二分 摘要:解题思路: 如何选择购买是与顺序无关的,我们发现,排序后,如果选择购买的商品价格高,那么可以选价格相对更高的商品报销,这样就可以降低成本 。排序后,贪心的从后往前购买商品,当购买的商品数量达到2时,就…… 题解列表 2023年07月20日 0 点赞 0 评论 1010 浏览 评分:9.9