fork download
  1. #include<stdio.h>
  2. int main(){
  3. int a[11];
  4. int temp;
  5. int i,j;
  6. //input
  7.  
  8. for(i=1;i<=10;i++){
  9. scanf("%d",&a[i]);
  10. }
  11.  
  12. //sort
  13.  
  14. for(i=1;i<10;i++){ //the number of number
  15. for(j=1;j<10-i+1;j++) //--
  16. if(a[j]<a[j+1]){
  17. temp=a[j];
  18. a[j]=a[j+1];
  19. a[j+1]=temp;
  20. }
  21. }
  22.  
  23. //output
  24. for(i=1;i<=10;i++){
  25. printf("%d ",a[i]);
  26. }
  27.  
  28.  
  29. return 0;
  30. }
Success #stdin #stdout 0s 2012KB
stdin
1 2 3 4 5 6 7 8 9 10
stdout
10 9 8 7 6 5 4 3 2 1