花落的新手代码(C语言代码) 摘要:解题思路:函数不难设计,但是细节非常重要。注意事项:注意这题超级坑,有时候m+n小于原来长度,有时候大于,注意到这点就可以了。参考代码:#include<stdio.h> #include<stri…… 题解列表 2017年12月25日 3 点赞 4 评论 690 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int a[100],b[100],m,n;void Add(int a[],int m,in…… 题解列表 2018年02月05日 0 点赞 0 评论 719 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:#include<stdio.h>int a[100],b[100];int n,m,m1,n1;void Add (int a[],int m,int b[],int n){ int i; for(…… 题解列表 2018年03月31日 0 点赞 1 评论 306 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:按照题目要求来就可以简单实现。注意事项:需要注意的是替换之后的数组a的元素个数。参考代码:#include <stdio.h> #include <malloc.h> int fun(…… 题解列表 2018年10月16日 0 点赞 0 评论 892 浏览 评分:9.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:难受 注意事项:参考代码:#include <bits/stdc++.h>using namespace std;void f(int a[],int x,int b[],int y){ …… 题解列表 2018年11月13日 0 点赞 0 评论 265 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int a[10000];int b[10000];int count;void add(int…… 题解列表 2018年12月23日 0 点赞 0 评论 562 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:唯独需要注意的地方就是:从数组b中把数插入到数组a后,a数组长度不变的情况。参考代码:#include <stdio.h> int main(){ int a[10001],b[10001]; …… 题解列表 2019年01月31日 1 点赞 0 评论 594 浏览 评分:8.0
蓝桥杯算法提高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 评论 555 浏览 评分:6.7
怎么查看测试用例-答案错误18%-没有测试失败的用例怎么改代码!!!!(C语言代码) 摘要:谁能告诉我怎么知道评判机用的测试用例?知道的请评论 只显示 点击查看系统可能提供的对比信息 ,这tm哪有那个按钮 #include #include v…… 题解列表 2019年12月21日 0 点赞 1 评论 894 浏览 评分:2.0
蓝桥杯算法提高VIP-数组替换-题解(C语言代码),24行 摘要:```c #include int main(){ int m,n,m1,n1,i; scanf("%d %d",&m,&n); int a[m],b[n]; …… 题解列表 2020年01月10日 0 点赞 0 评论 346 浏览 评分:0.0