题目 编写程序将下标为奇数的数组元素从数组中删除,然后排序输出。 相关知识点: 试题来源: 解析#define N 10 void sort(int a[],int n) { int I,j,t; for(I=1;I<=n-1;I++) for(j=0;j if(a[j]>a[j+1]) { t=a[j];a[j]=a[j+1];a[j+1]=t;}} main()...