摘要:
新建main.cpp 1 #include<iostream> 2 #include "student.h" 3 4 using namespace std; 5 6 void printMenu() { 7 cout << "**********************************" 阅读全文
摘要:
新建student.cpp,实现student.h声明的所有函数 1 #include<iostream> 2 #include "student.h" 3 4 using namespace std; 5 6 void displayStudent(Student *stu_head) { 7 S 阅读全文
摘要:
新建student.h 1 #include<iostream> 2 #include<string> 3 4 using namespace std; 5 6 struct Student { 7 string no; 8 string name; 9 string sex; 10 int age 阅读全文