⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 operator.cpp

📁 24点游戏源代码,用vc编写,个人作品,可能还有点错误,只是一个大概的算法
💻 CPP
字号:
// Operator.cpp: implementation of the COperator class.
//
//////////////////////////////////////////////////////////////////////

#include "Operator.h"

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

COperator::COperator()
{
	m_Type = 1;
	Value = 0;
}

COperator::~COperator()
{

}

COperator::COperator(int Opt)
{
	m_Type = 1;
	Value = Opt;
}

⌨️ 快捷键说明

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