fork(1) download
  1. // 2012年度 プログラミング言語 第9回演習
  2. // 別途講義中の指示に従いファイルを作成し提出すること
  3.  
  4. // /*?? */を適切なプログラムに置き換えて各演習のプログラムを完成させること.
  5.  
  6.  
  7. /*----------------------------------------------------------------------*/
  8. // ●演習9-1 リストを用いた成績処理
  9. // ◎ソースコード
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12.  
  13. #define NAME_LEN 20
  14. #define SUB_NO 4
  15.  
  16. typedef struct student {
  17. struct student *next;
  18. int st_id;
  19. char st_name[NAME_LEN];
  20. int english;
  21. int mathematics;
  22. int chemistry;
  23. int physics;
  24. } student_t;
  25.  
  26. void printdata (student_t *st_p) {
  27. printf("%d\t%s\t%d\t%d\t%d\t%d\n", st_p->st_id, st_p->st_name,
  28. st_p->english, st_p->mathematics, st_p->chemistry, st_p->physics
  29. /*?? (1) ここに*st_pの各メンバを出力する記述をする */);
  30. }
  31.  
  32. void printAverage (student_t *st_p) {
  33. // double ave = (/*?? (2) ここに各科目の総和を計算する式を記述する*/)/(double)SUB_NO;
  34. double ave = (st_p->english + st_p->mathematics + st_p->chemistry + st_p->physics)/(double)SUB_NO;
  35. printf("The average score of %d %s is %4.1f.\n", st_p->st_id, st_p->st_name, ave);
  36. }
  37.  
  38. void main() {
  39. student_t* head;//リストの先頭
  40. student_t* stup;//入力されたデータの一時保管用
  41. student_t* temp;//リスト操作用のテンポラリ
  42.  
  43. int found;
  44. int command;
  45. int key_id;
  46. int stn = 0;//読み込んだ人数を数える
  47.  
  48. double subjectAverage[SUB_NO];
  49. for(int i = 0; i < SUB_NO; i++) subjectAverage[i] =0;
  50.  
  51. head = NULL;
  52.  
  53. printf("%s %s %s\n", CLASS, ID, NAME);
  54.  
  55. while(1) {
  56. /*?? (3) malloc関数を使ってヒープ領域を確保しstupに代入 */
  57. stup = malloc(sizeof (student_t));
  58. printf("Please input data. : No.%d \n", stn+1);
  59. printf("Student number (Typing \"0\" to exit.):");
  60. scanf_s("%d", &stup->st_id);
  61. if (stup->st_id == 0) break;
  62. printf("Name:");
  63. scanf_s("%s", stup->st_name, NAME_LEN);
  64. printf("English:");
  65. scanf_s("%d", &stup->english);
  66. printf("Mathematics:");
  67. scanf_s("%d", &stup->mathematics);
  68. printf("Chemistry:");
  69. scanf_s("%d", &stup->chemistry);
  70. printf("Physics:");
  71. scanf_s("%d", &stup->physics);
  72. stup->next = head;
  73. stn++;
  74.  
  75. if (head == NULL) head = stup;//一番最初のデータを入力した時の処理
  76. else if (head->st_id >= stup->st_id) {
  77. //リストのhead側(先頭)の学番より入力された学番が小さい場合は,
  78. //リストのhead側(先頭)に入力されたデータを追加する.
  79.  
  80. /*?? (4) headの中身を現在の先頭のものに入れ替える */
  81. head = stup;
  82. } else {
  83. //リストのhead側(先頭)の学番より入力された学番が大きい場合は,
  84. //リスト内を操作して入力されたデータを適切な場所に追加する.
  85. //つまり,学生番号順に並ぶように追加する場所を調べている
  86. temp = head;
  87. while (temp->next != NULL ) {
  88. //tempには現在操作中の構造体データが入っている
  89. if (temp->next->st_id >= stup->st_id){
  90. //tempの次に操作するデータの学番が入力された
  91. //学番より大きい場合はwhileから抜ける
  92. break;
  93. }
  94. //次の構造体データに移動
  95. temp = temp->next;
  96. }
  97. //現在操作中のデータの後に入力されたデータを挿入する.
  98. stup->next = temp->next;
  99. temp->next = stup;
  100. }
  101. }
  102.  
  103. temp = NULL; //tempを再初期化
  104. printf("%d students data loaded.\n", stn);
  105. printf("\n--------------------------------\n");
  106.  
  107. while(1) {
  108. printf("\nPlease input the number.\n");
  109. printf("1 : List of Result\n");
  110. printf("2 : Personal Result\n");
  111. printf("3 : Personal Average\n");
  112. printf("4 : Subject Average\n");
  113. printf("0 : exit\n");
  114. scanf_s("%d", &command);
  115.  
  116. if (command == 1){
  117. printf("List of Result\n");
  118. printf("Num.\tName\tEng.\tMath.\tChem.\tPhys.\n");
  119. // for(/*?? (5) リストの走査条件 */) {
  120. for(temp = head; temp; temp = temp->next) {
  121. //上記により,リストの要素を先頭(head側)から順に処理をする
  122. //着目している要素はtempで示している.
  123. printdata(temp);
  124. }
  125. } else if (command == 2){
  126. printf("Please input student number.\n");
  127. scanf_s("%d", &key_id);
  128. found = 0;
  129. // for(/*?? (5) リストの走査条件 */) {
  130. for(temp = head; temp; temp = temp->next) {
  131. if (temp->st_id == key_id) {
  132. printdata(temp);
  133. found = 1;
  134. break;
  135. }
  136. }
  137. if (found == 0) printf("Not Found. (%d)\n", key_id);
  138. } else if (command == 3) {
  139. printf("Please input student number.\n");
  140. scanf_s("%d", &key_id);
  141. found = 0;
  142. // for(/*?? (5) リストの走査条件 */) {
  143. for(temp = head; temp; temp = temp->next) {
  144. if (temp->st_id == key_id) {
  145. printAverage(temp);
  146. found = 1;
  147. break;
  148. }
  149. }
  150. if (found == 0) printf("Not Found. (%d)\n", key_id);
  151. } else if (command == 4) {
  152. printf("Eng.\tMath.\tChem.\tPhys.\n");
  153. // for(/*?? (5) リストの走査条件 */) {
  154. for(temp = head; temp; temp = temp->next) {
  155. subjectAverage[0] += temp->english;
  156. subjectAverage[1] += temp->mathematics;
  157. subjectAverage[2] += temp->chemistry;
  158. subjectAverage[3] += temp->physics;
  159. }
  160. for (int i = 0; i < SUB_NO; i++) {
  161. printf("%4.1f\t", subjectAverage[i] / (double)stn);
  162. subjectAverage[i] = 0.0;
  163. }
  164. } else if (command == 0) {
  165. break;
  166. } else {
  167. printf("invalid number\n");
  168. }
  169. printf("\n--------------------------------\n");
  170. temp = NULL; //tempを再初期化
  171. }
  172. }
  173.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty