摘要: // 将图书信息写入文本文件data1.txt #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #define N 7 #define M 80 typedef struct { char name[M]; // 书名 char author[M 阅读全文
posted @ 2022-12-24 16:51 小吉祥草王 阅读(41) 评论(0) 推荐(0)
摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; d 阅读全文
posted @ 2022-12-24 16:41 小吉祥草王 阅读(25) 评论(0) 推荐(0)