學生成績管理系統順序表實現

#include<stdio.h> #include<stdlib.h> #define listSize 100 //學生信息結構體 typedef struct { long num;//學號 char name[10];//姓名 int score;//成績 }STUDENT; //順序表結構體 typedef struct { STUDENT
相關文章
相關標籤/搜索