fork download
  1. #include <stdio.h>
  2.  
  3. // 構造体の定義
  4. typedef struct {
  5. int id;
  6. int weight;
  7. int height;
  8. } Body;
  9.  
  10. // swap関数
  11. void swap(Body *a, Body *b) {
  12. Body temp = *a;
  13. *a = *b;
  14. *b = temp;
  15. }
  16.  
  17. int main() {
  18. // 配列の初期化
  19. Body a[] = {
  20. {1, 65, 169},
  21. {2, 73, 170},
  22. {3, 59, 161},
  23. {4, 79, 175},
  24. {5, 55, 168}
  25. };
  26.  
  27. int n = 5; // 配列の要素数
  28.  
  29. // 身長の降順でソート
  30. for (int i = 0; i < n - 1; i++) {
  31. for (int j = 0; j < n - 1 - i; j++) {
  32. if (a[j].height < a[j + 1].height) {
  33. swap(&a[j], &a[j + 1]);
  34. }
  35. }
  36. }
  37.  
  38. // 結果の表示
  39. for (int i = 0; i < n; i++) {
  40. printf("%d, %d, %d\n", a[i].id, a[i].weight, a[i].height);
  41. }
  42.  
  43. return 0;
  44. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
4, 79, 175
2, 73, 170
1, 65, 169
5, 55, 168
3, 59, 161