fork(1) 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[5] = {
  20. {1, 65, 169},
  21. {2, 73, 170},
  22. {3, 59, 161},
  23. {4, 79, 175},
  24. {5, 55, 168}
  25. };
  26.  
  27. // 身長を基準に逆順ソート (単純選択ソート)
  28. for (int i = 0; i < 4; i++) {
  29. for (int j = i + 1; j < 5; j++) {
  30. if (a[i].height < a[j].height) { // 身長の逆順
  31. swap(&a[i], &a[j]);
  32. }
  33. }
  34. }
  35.  
  36. // 結果の表示
  37. printf("ID, 体重, 身長\n");
  38. for (int i = 0; i < 5; i++) {
  39. printf("%d, %d, %d\n", a[i].id, a[i].weight, a[i].height);
  40. }
  41.  
  42. return 0;
  43. }
  44.  
  45.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
ID, 体重, 身長
4, 79, 175
2, 73, 170
1, 65, 169
5, 55, 168
3, 59, 161