题目描述
下面程序中“/ ***** 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
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