摘要: // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 7 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 } Book; int main() { Bo 阅读全文
posted @ 2023-06-15 11:09 orangeove 阅读(8) 评论(0) 推荐(0)