單鏈表設計一個學生成績系統

#include<iostream.h> struct Node {     int number; char* name; char* Class; float math_grade; Node *next; }; class Student { public: Student(); Student(char*n[],char*c[],int num[],float m[],int l); ~S
相關文章
相關標籤/搜索