📄 teacher.cpp
字号:
// teacher.cpp: implementation of the teacher class.
//
//////////////////////////////////////////////////////////////////////
#include "teacher.h"
#include"persons.h"
#include<iostream.h>
#include<iomanip.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
teacher::~teacher()
{
}
void teacher::print()
{
cout<<setw(9)<<"teacher:"<<setw(10)<<name;
cout<<setw(5)<<"age:"<<setw(5)<<age;
cout<<setw(5)<<"sex:"<<setw(5)<<sex;
cout<<setw(8)<<"subject:"<<setw(8)<<subject;
cout<<setw(15)<<"TeachFor:"<<setw(5)<<yearsOfT<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -