1 #include <stdio.h> 2 void sort1(int s[]) 3 { 4 int i,j,t; 5 for(i=0;i<9;i++) 6 { 7 for(j=0;j<10;j++) 8 { 9 if(s[j]>s[j+1]) 10 { 11 t=s[j];s[j]=s[j+1];s[j+1]=t; 12 } 13 } 14 } 15 } 16 17 main() 18 { 19 int i,a[10]; 20 printf("please input 10 numbers\n"); 21 for(i=0;i<10;i++) 22 { 23 scanf("%d",&a[i]); 24 } 25 sort1(a); 26 for(i=0;i<10;i++) 27 { 28 printf("%d\n",a[i]); 29 } 30 }
标签:10,int,numbers,数组,printf,排序 From: https://www.cnblogs.com/ruilovekeke/p/17301388.html