题解 1025: [编程入门]数组插入处理

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

【C语言】新手解法

摘要:解题思路:由后往前移动目标数注意事项:参考代码:#include <stdio.h> int main(){    int array[10]={0};    int i1,i2,a;    i1=a……

数组的插入处理

摘要:解题思路:用到了冒泡排序和数组插入注意事项:参考代码:#include <stdio.h>#include <string.h>void swap(int *a,int *b){ int tmp=*a……