蓝桥杯算法提高VIP-数组替换 (C++代码)不想写函数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int v1,v2,t,s,l; int n,m; int a[1000…… 题解列表 2019年03月30日 0 点赞 0 评论 839 浏览 评分:7.3
蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要:```c #include int main(){ int m,n,m1,n1; char a[1000],b[1000]; scanf("%d%d",&m,&n); for(in…… 题解列表 2019年12月06日 0 点赞 1 评论 643 浏览 评分:6.7
怎么查看测试用例-答案错误18%-没有测试失败的用例怎么改代码!!!!(C语言代码) 摘要:谁能告诉我怎么知道评判机用的测试用例?知道的请评论 只显示 点击查看系统可能提供的对比信息 ,这tm哪有那个按钮 #include #include v…… 题解列表 2019年12月21日 0 点赞 1 评论 932 浏览 评分:2.0
为什么只对百分之82呀 摘要:解题思路:它只能对82,有大佬看看哪里有问题吗,显示的答案错误注意事项:参考代码:#include<stdio.h>int main(){ int m,n,m1,n1; scanf("%d…… 题解列表 2021年10月24日 0 点赞 2 评论 159 浏览 评分:0.0
数组替换小白解法-C语言 摘要:解题思路: 用指针来存放数组的长度注意事项: 注意区分数组a追加后的长度和原本的长度哪个更大参考代码: #include<stdio.h> int *p1,*p2; vo…… 题解列表 2021年11月26日 0 点赞 0 评论 344 浏览 评分:0.0
[算法提高VIP]数组替换:非常简单 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> void Add(int a[], int m, int b[], int n) { …… 题解列表 2021年03月12日 0 点赞 0 评论 139 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 python 摘要:解题思路:分情况讨论注意事项:逗号输出的问题参考代码:m,n = map(int,input().split()) lista = list(map(int,input().split())) l…… 题解列表 2021年04月25日 0 点赞 0 评论 260 浏览 评分:0.0
C++版本—— 理解题意 摘要: #include using namespace std; int main() { int m,n; cin >> m >>…… 题解列表 2021年04月16日 0 点赞 0 评论 262 浏览 评分:0.0
我淦,冲冲冲。 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;void Add(int a[],int m,int b…… 题解列表 2021年04月12日 0 点赞 0 评论 221 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要:## 解题思路: 输入两个数组的长度和数组的内容,然后在输入第一个数组的第m1位置之后插入第二个数组第n1个之前的数据,直接将第一个数组从第m1的位置赋值第二个数组即可。最后输出改变后的第一个数组 …… 题解列表 2020年07月12日 0 点赞 0 评论 379 浏览 评分:0.0