fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct {
  4. int id;
  5. int weight;
  6. int height;
  7. } Body;
  8.  
  9. // swap関数
  10. void swap(Body *a, Body *b) {
  11. Body w = *a;
  12. *a = *b;
  13. *b = w;
  14. }
  15.  
  16. // 配列を降順にソートする関数
  17. void sortByHeightDesc(Body a[], int n) {
  18. for (int i = 0; i < n - 1; i++) {
  19. for (int j = 0; j < n - i - 1; j++) {
  20. if (a[j].height < a[j + 1].height) {
  21. swap(&a[j], &a[j + 1]);
  22. }
  23. }
  24. }
  25. }
  26.  
  27. int main() {
  28. // 構造体配列を初期化
  29. Body a[] = {
  30. {1, 65, 169},
  31. {2, 73, 170},
  32. {3, 59, 161},
  33. {4, 79, 175},
  34. {5, 55, 168}
  35. };
  36.  
  37. int n = sizeof(a) / sizeof(a[0]);
  38.  
  39. // 身長の降順にソート
  40. sortByHeightDesc(a, n);
  41.  
  42. // 結果を表示
  43. for (int i = 0; i < n; i++) {
  44. printf("%d, %d, %d\n", a[i].id, a[i].weight, a[i].height);
  45. }
  46.  
  47. return 0;
  48. }
  49.  
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