蓝桥杯算法提高VIP-交换Easy-题解(C语言代码) 摘要: #include int main(void) { int i = 0, N = 0, M = 0, x = 0, y = 0; sc…… 题解列表 2020年03月14日 0 点赞 0 评论 255 浏览 评分:0.0
小南解题--交换Easy--80ms 摘要:'''2022年03月12日 14:05:59.563zgn946'''a,b=map(int,input().split())aa=input().s…… 题解列表 2022年08月27日 0 点赞 0 评论 108 浏览 评分:0.0
小白单纯记录自己题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int temp,j,i,m,n,a[1000],b[1000]…… 题解列表 2022年03月12日 0 点赞 0 评论 120 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(Java代码)简单点的办法 摘要:解题思路:注意事项:import java.util.Scanner; public class test1491 { /** * @param args */ pu…… 题解列表 2021年01月26日 0 点赞 0 评论 252 浏览 评分:0.0
一种超简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,w=1; int t; int i,j; int x,y; sca…… 题解列表 2022年12月02日 0 点赞 0 评论 82 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy (C++代码) 摘要:#include <iostream> #include <fstream> #include <deque> #include <cstdlib> #include <string> #i…… 题解列表 2018年03月02日 0 点赞 0 评论 578 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n,m; cin>>n>>m; int *a=new i…… 题解列表 2020年03月24日 0 点赞 0 评论 299 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要:```cpp #include using namespace std; void f(int x,int y,int a[]) { int t=a[x-1]; a[x-1…… 题解列表 2020年05月01日 0 点赞 0 评论 285 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=1005; int a[M]={0}; int main(…… 题解列表 2018年04月01日 0 点赞 0 评论 538 浏览 评分:0.0