摘要: // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int main() { Boo 阅读全文
posted @ 2022-06-05 16:42 !!!!??? 阅读(82) 评论(3) 推荐(0) 编辑