原创 第十三週閱讀項目(6):鏈表類 .

代碼: #include <iostream> using namespace std; class Student //結點類 { public: Student(int n,double s):num(n), score(s