前段時間學習鏈表,編一個學生管理系統,歡迎指正

//編譯預處理 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> //自定義數據類型 typedef struct {  int num;  char name[20];  double score; }STD; typedef struct lnode {  STD data;  struct ln
相關文章
相關標籤/搜索