我已经学习了几个星期的C并遇到了以下任务
我应该如何处理此任务以及我应该使用哪种编码?
答案 0 :(得分:-1)
创建一个结构"学生"。
创建方法"显示"。
了解如何在C中写入/读取文件。
实现一个switch-case并调用添加,删除,显示列表,写入/读取文件所需的方法。
以下是一些帮助:
struct Student{ //change it if you want
char name[50];
int year;
};
void display(int size, struct Student students[] ){
for (int i = 0; i < size; ++i) {
printf("%s: %d", students[i].name, students[i].year);
}
}
int main(){
struct Student students[5]; //this is the array you needed
//more code here
return EXIT_SUCCESS;
}