摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct stud_node { 5 int num; 6 char name[20]; 7 int score; 8 struct stud_node* next; 9 }; 10 11 struct 阅读全文
posted @ 2020-07-18 16:28 jason2018 阅读(304) 评论(0) 推荐(0) 编辑