/* Note:Your choice is C IDE */ #include "stdio.h" void main() { int a,b,c,d,sum=0; int n[]={10,20,40,24,45,53,32,54,23,7}; for(a=0;a<10;a++) { sum+=n[a]; } printf("该十组数的总和是:%d",sum); printf("\n该十组数的平均数是:%.2f",sum/10.0f); printf("\n排序前的顺序是:"); for(b=0;b<10;b++) { printf("%d ",n[b]); } printf("\n"); for(c=0;c<9;c++) { for(d=c+1;d<10;d++) if(n[c]>n[d]) { a=n[c]; n[c]=n[d]; n[d]=a; } } printf("\n排序后的顺序是:"); for(b=0;b<10;b++) { printf("%d ",n[b]); } } /* x 1 2 3 4 5 6 7 8 9 10 c 0 d 10 20 40 24 45 53 32 54 23 7 if(n[c]>n[d]) x=n[c]; n[c]=n[d]; n[d]=x; */
归去来兮