real.cpp

来自「大量的C++语言代码,可以快速的学习C++的相关知识」· C++ 代码 · 共 29 行

CPP
29
字号
// Real.cpp: implementation of the Real class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Real.h"

#include <iostream.h>

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

Real::Real( double r )
: Complex( r, 0 )
{

}

Real::~Real()
{

}

void Real::Print()
{
	cout << re;
}

⌨️ 快捷键说明

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