摘要: 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 class Teacher //教师类 5 {public: 6 Teacher(int,char [],char); //声明构造函数 7 void display(); //声明输出函数 8 private: 9 int num;10 char name[20];11 char... 阅读全文
posted @ 2013-06-18 13:43 herizai 阅读(269) 评论(0) 推荐(0) 编辑