06 2024 档案

摘要:task1.c 点击查看代码 #include <stdio.h> #define N 80 #define M 100 typedef struct { char name[N]; // 书名 char author[N]; // 作者 } Book; // 函数声明 void func1(); 阅读全文
posted @ 2024-06-17 17:47 程欣雨 阅读(25) 评论(1) 推荐(0)
摘要:task1.c 点击查看代码 #include <stdio.h> #include <string.h> #define N 3 // 运行程序输入测试时,可以把这个数组改小一些输入测试 typedef struct student { int id; // 学号 char name[20]; / 阅读全文
posted @ 2024-06-03 19:15 程欣雨 阅读(25) 评论(0) 推荐(0)