#include<stdio.h> void main() { void sort(int a[],int n);//函数声明 int a[10],i; printf("please input your data\n"); for(i=0;i<10;i++) { scanf("%d",&a[i]); } printf("the array is :\n"); for(i=0;i<10;i++) printf("%4d",a[i]); printf("\n"); sort(a,10); printf("排序好的数的顺序为\n"); for(i=0;i<10;i++) printf("%4d",a[i]); } //排序算法 void sort(int a[],int n) { int i,j,temp; for(i=0;i<n-1;i++) for(j=0;j<n-1-i;j++) if(a[j]<a[j+1]) { temp=a[j+1]; a[j+1]=a[j]; a[j]=temp; } }
运行结果:please input your data
11 22 23 1 7 4 22 99 4 0
the array is :
11 22 23 1 7 4 22 99 4 0
排序好的数的顺序为
99 23 22 22 11 7 4 4 1 0
Process returned 4 (0x4) execution time : 25.908 s
Press any key to continue.