摘要: 一.1 // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int main() { 阅读全文
posted @ 2022-06-06 17:59 别德力 阅读(29) 评论(2) 推荐(0) 编辑