woman.cpp

来自「实现学生宿舍信息的基本管理」· C++ 代码 · 共 25 行

CPP
25
字号
// woman.cpp: implementation of the woman class.
//
//////////////////////////////////////////////////////////////////////

#include "woman.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

woman::woman()
{

}

woman::~woman()
{

}

void woman::setas()
{
	cout<<"作为一个女生,你所喜爱的运动和爱好为:";
	cin>>sport>>aihao;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?