#include<iostream>
#include <string>
using namespace std;
#include <stdio.h> //兼容 c
int main()
{
int a[]={1,2,3,4,5,6,7,8,9,10,11,0}; // 假定已知一维数组数据
int i,L;
int p,v;
cout << "input location 0 or 1,2,3...10:"<< endl;
cin>>p; // 输入 下标 位置
cout << "the value you want to insert:" << endl;
cin >> v; // 输入插入的值
L = sizeof(a)/sizeof(int);
for (i=L-1;i>p;i--) a[i]=a[i-1]; //挪动受影响的元素
a[p]=v; // 插入
for (i=0;i<L;i++)printf("a[%d]=%d\n",i,a[i]); // 输出结果
return 0;
}
温馨提示:内容为网友见解,仅供参考