以前的作業——用順序表編一個學生管理系統

#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
相關文章
相關標籤/搜索