-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.c
69 lines (60 loc) · 1.93 KB
/
Module.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <stdio.h>
#include <string.h>
#include "Module.h"
//Part a
void getModuleInfo(Module_detail *AnewModule) { //cần thay đổi AnewModule nên phải truyền tham chiếu
puts("Enter module ID: ");
scanf("%*c%9s", AnewModule->module_ID);
puts("Enter module name: ");
scanf("%*c%19s", AnewModule->module_name);
puts("Enter module credit: ");
scanf("%d", &AnewModule->module_credit);
}
//Part b
void showModuleInfo(Module_detail Modules[], int n) { //In từ mảng Modules
puts("List of modules");
printf("%-10s%-20s%-10s\n", "ID", "Name", "Credit");
puts("-------------------------------------------");
for (int i = 0; i < n; i++) {
printf("%-10s%-20s%-10d\n", Modules[i].module_ID, Modules[i].module_name, Modules[i].module_credit);
}
}
//Part e
//hàm tìm vị trí của một học phần trong danh sách Moules[] theo mã ID học phần
int indexFromModuleID(Module_detail Modules[], int number_of_modules, char ID_to_find[]) {
for (int i = 0; i < number_of_modules; i++) {
int match = strcmp(ID_to_find, Modules[i].module_ID);
if (match == 0) {
return i;
}
}
}
//Part l //Ctrl + S
void writeModuleFile(char file_name[], Module_detail Modules[], int n) {
FILE *fp;
fp = fopen(file_name, "wb"); //mỗi lần ghi mới lại toàn bộ danh sách học sinh
for (int i = 0; i < n; i++) {
fwrite(&Modules[i], sizeof(Module_detail), 1, fp);
}
puts("Write modules data successfully !");
fclose(fp);
}
//Part m
void readModuleFile(char file_name[], Module_detail Modules[], int *n) {
FILE *fp;
fp = fopen(file_name, "rb");
if (fp == NULL) {
printf("Cannot open file %s\n", file_name);
return;
}
int i = 0;
while (!feof(fp)) {
fread(&Modules[i], sizeof(Module_detail), 1, fp);
if (feof(fp)) {
break;
}
i++;
}
*n = i;
fclose(fp);
}