摘要: 1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 struct Student 6 { 7 string name; 8 int score; 9 Student* next; 10 }; 11 Student* 阅读全文
posted @ 2019-04-13 14:22 littlelittleprince 阅读(436) 评论(0) 推荐(0) 编辑