以前的作业——用顺序表编一个学生管理系统

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> typedef struct  {      int num;      char name[15];      double score;  }STD; typedef struct {  STD * data;  int length;  int
相关文章
相关标签/搜索