摘要: #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; int main(){ FILE *fin; STU st[N] 阅读全文
posted @ 2021-06-17 17:48 gch1203 阅读(36) 评论(2) 推荐(0)