摘要: #include"pch.h" #include #include using namespace std; struct Student { int id; char number[16]; char name[16]; Student* next; }; //使用全局变量 Student ss[4] = { {201501,"John",0}, {20... 阅读全文
posted @ 2019-03-12 14:05 Maggieisxin 阅读(176) 评论(0) 推荐(0)