摘要: task1.c 1 #include <stdio.h> 2 3 #define N 80 4 #define M 100 5 6 typedef struct { 7 char name[N]; 8 char author[N]; 9 } Book; 10 11 void write(); 12 阅读全文