real.cpp

来自「钱能的《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 + -
显示快捷键?