关于C++的题目,求详细解答,谢谢!!

日期:2006-12-30 18:32:10 人气:1

关于C++的题目,求详细解答,谢谢!!

void SortIntegerArray(int a[], int n){ int i,j,temp;n--; for(i=0;i<n;i++) for(j=0;j<n-i;j++) if(a[j]>a[j+1]){temp=a[j];a[j]=a[j+1];a[j+1]=temp;} }; #include #define N 10 void main() { int i,array[N]; printf(\"Input the
    A+
热门评论