问题3629--程序改错:10升排序

3629: 程序改错:10升排序

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

下面程序中“/ ***** N ***** /”的下一行中有错误,请改正(注意:不得加行、减行、加句、减句,否则后果自负)。 该程序功能:用选择法对10个整数按升序排序。 #include "stdio.h" #define N 10 void main() { int i,j,min,temp; int a[N]={5,4,3,2,1,9,8,7,6,0}; printf("\nThe array is:\n"); /* 输出数组元素 */ for (i=0;i

输入

输出

对数组中10个数按从小到大顺序排列。

样例输入 Copy

样例输出 Copy

The array is:
    5    4    3    2    1    9    8    7    6    0
The sorted numbers: 
    0    1    2    3    4    5    6    7    8    9

来源/分类