fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct{
  4. int id,weight,height;
  5. }Body;
  6.  
  7. void swap(Body*a,Body*b){
  8. Body temp=*a;
  9. *a=*b;
  10. *b=temp;
  11. }
  12.  
  13. int main(){
  14. Body a[]={
  15. {1,65,169},
  16. {2,73,170},
  17. {3,59,161},
  18. {4,79,175},
  19. {5,55,168}
  20. };
  21.  
  22. int n=5;
  23.  
  24. for(int i=0;i<n-1;i++){
  25. for(int j=0;j<n-1-i;j++){
  26. if(a[j].height<a[j+1].height){
  27. swap(&a[j],&a[j+1]);
  28. }
  29. }
  30. }
  31.  
  32. for(int i=0;i<n;i++){
  33. printf("%d, %d, %d\n",a[i].id,a[i].weight,a[i].height);
  34. }
  35.  
  36. return 0;
  37. }
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
4, 79, 175
2, 73, 170
1, 65, 169
5, 55, 168
3, 59, 161