摘要: #include<stdio.h> #include<malloc.h> #include<string.h> //动态构造学生管理系统 struct Student { int age; float score; char name[100]; }; int main(void) { int le 阅读全文
posted @ 2020-11-20 11:11 Connor_Jiao 阅读(99) 评论(0) 推荐(0) 编辑