摘要: // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 80 typedef struct { char name[N]; // 书名 char author[N]; // 作者 } Book; int main() { Book x[] = { { 阅读全文
posted @ 2023-12-16 18:18 王青松15252129616 阅读(3) 评论(0) 推荐(0) 编辑