朴实无华的sort选择排序 摘要:解题思路:在bool那写入判断条件注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool cmp(int a,i…… 题解列表 2023年12月22日 1 点赞 0 评论 148 浏览 评分:0.0
编写题解 2879: 错误探测 摘要:解题思路:注意事项:参考代码:m=int(input())aList=[]flag1=1myList=[list(map(int,input().split())) for t in range(m)…… 题解列表 2023年12月22日 0 点赞 0 评论 248 浏览 评分:0.0
题解 2885: 矩阵转置 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 166 浏览 评分:0.0
2885: 矩阵转置 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n,m; cin>>n…… 题解列表 2023年12月22日 0 点赞 0 评论 192 浏览 评分:0.0
2888: 图像模糊处理 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n,m; cin>>n…… 题解列表 2023年12月22日 0 点赞 0 评论 193 浏览 评分:0.0
2847: 找第一个只出现一次的字符 摘要:``` #include using namespace std; const int N=100010; char a[N]; int cnt[26]; int main() { c…… 题解列表 2023年12月22日 0 点赞 0 评论 187 浏览 评分:0.0
题解 2888: 图像模糊处理 摘要:```cpp #include using namespace std; const int N=110; int a[N][N]; int main(){ int n,m; …… 题解列表 2023年12月22日 0 点赞 0 评论 241 浏览 评分:0.0
题解 1231: 杨辉三角 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 169 浏览 评分:0.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(ci…… 题解列表 2023年12月22日 0 点赞 0 评论 157 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,y; int i,j,min; scanf("%d %d",&x,&y); min=x; if(x…… 题解列表 2023年12月22日 0 点赞 0 评论 134 浏览 评分:0.0