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

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

筛选

[编程入门]数组插入处理

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[15],z;int main(){  for(int i=1……

用选择排序法解题

摘要:我感觉把这10个数放一起比大小思路会简单些 中间再插入一个数放入数组,然后其它数移到后面数组的方法感觉不容易实现 ```c //选择排序法 #include int main () {……

史上最简单数组插入

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <stdbool.h>int main(){ int i,a1,a[4],q=0;……

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

摘要:步骤:    1.定义数组分配空间    2.按顺序输入数组元素(1 7 8 17 23 24 59 62 101)    3.输入要插入的元素(50)    4..让数组长度+1(a = Array……