12 2022 档案

摘要:#include <stdio.h> #define N 7 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 } Book; int main() { Book x[N] = { {"《雕塑家》", "斯 阅读全文
posted @ 2022-12-26 19:34 殷正阳 阅读(28) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; double perf; double mid; double f 阅读全文
posted @ 2022-12-26 19:08 殷正阳 阅读(38) 评论(0) 推荐(0)