用选择法对10个整数从小到大排序。
#include<stdio.h>
#define N 10
int sort(int a[N]){
int temp;
for(int i=0;i<N;i++){
for(int j=i;j<N;j++){
if(a[i]>a[j]){
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
}
}
return a[N];
}
int main(){
int a[10];
for(int i=0;i<10;i++){
scanf("%d",&a[i]);
}
sort(a);
for(int i=0;i<10;i++){
printf("%d\n",a[i]);
}
}