蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要:#include<stdio.h>int main(){ int m,n,m1,n1,i,j=0; int a[100],b[100]; scanf("%d%d",&m,&n); for(i=0;i<…… 题解列表 2020年12月04日 0 点赞 0 评论 776 浏览 评分:9.9
蓝桥杯算法提高VIP-数组替换-题解(Java代码) 摘要:public class Main { 题目的意思无非就是Copy数组,我们可以用Java本身自带的库,System.arraycopy(Object src, int srcPos,Objec…… 题解列表 2020年02月18日 0 点赞 1 评论 549 浏览 评分:9.9
蓝桥杯算法提高VIP-数组替换 摘要:// 禁止在 Visual Studio 中出现 scanf 的安全警告 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> // 函数…… 题解列表 2023年12月05日 0 点赞 0 评论 110 浏览 评分:9.9
1483: 蓝桥杯算法提高VIP-数组替换82%的进来(C语言版) 摘要::red_circle:**注意:**::tw-1f1e8-1f1f3: 当 **m1+n1 **小于**m**时 a[]中没元素也要输出来,显然以**m1+n1**作为循环结束的标志是不对的,具体…… 题解列表 2022年02月12日 0 点赞 1 评论 404 浏览 评分:9.9
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:按照题目要求来就可以简单实现。注意事项:需要注意的是替换之后的数组a的元素个数。参考代码:#include <stdio.h> #include <malloc.h> int fun(…… 题解列表 2018年10月16日 0 点赞 0 评论 892 浏览 评分:9.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:唯独需要注意的地方就是:从数组b中把数插入到数组a后,a数组长度不变的情况。参考代码:#include <stdio.h> int main(){ int a[10001],b[10001]; …… 题解列表 2019年01月31日 1 点赞 0 评论 593 浏览 评分: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 评论 893 浏览 评分:2.0
为什么只对百分之82呀 摘要:解题思路:它只能对82,有大佬看看哪里有问题吗,显示的答案错误注意事项:参考代码:#include<stdio.h>int main(){ int m,n,m1,n1; scanf("%d…… 题解列表 2021年10月24日 0 点赞 2 评论 117 浏览 评分: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