12 2023 档案

摘要:实验一 // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 80 typedef struct { char name[N]; // 书名 char author[N]; // 作者 } Book; int main() { Book x[] = 阅读全文
posted @ 2023-12-14 21:44 王勇智 阅读(5) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <string.h> #include<stdlib.h> typedef struct { char name[20]; // 姓名 char phone[12]; // 手机号 int vip; // 是否为紧急联系人,是取1;否则取0 } 阅读全文
posted @ 2023-12-13 20:11 王勇智 阅读(11) 评论(0) 推荐(0) 编辑