📄 tutor.cpp
字号:
// Tutor.cpp: implementation of the Tutor class.
//
//////////////////////////////////////////////////////////////////////
#include "Tutor.h"
#include<iostream>
#include <string>
using namespace std;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Tutor::Tutor()
{
}
Tutor::~Tutor()
{
}
Tutor::Tutor(string s)
{
name=s;
}
void Tutor::show()
{
cout<<"teacher's name:"<<name<<" ";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -