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