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

📄 complexm.cpp

📁 《c++大学教程实验指导书》源码
💻 CPP
字号:
// Chapter 6 of C++ How to Program
// complexm.cpp
// member function definitions for class Complex
#include <iostream>

using std::cout;

#include "complex.h"

// constructor
Complex::Complex( double real, double imaginary )
{
      setComplexNumber( real, imaginary );

} // end class Complex constructor

// add complex numbers
void Complex::addition( const Complex &a )
{
   /* Write statement to add the realPart of a to the class
      realPart */
   /* Write statement to add the imaginaryPart of a to the 
      class imaginaryPart */

} // end function addition

// subtract complex numbers
void Complex::subtraction( const Complex &s )
{
   /* Write a statement to subtract the realPart of s from the
      class realPart */
   /* Write a statement to subtract the imaginaryPart of s from 
      the class imaginaryPart */

} // end function subtraction

// print complex numbers
void Complex::printComplex()
{ 
   cout << '(' << realPart << ", " << imaginaryPart << ')';

} // end function printComplex

// set complex number
void Complex::setComplexNumber( double real, double imaginary )
{
   realPart = real;
   imaginaryPart = imaginary;

} // end function setComplexNumber



/**************************************************************************
 * (C) Copyright 1992-2003 by Deitel & Associates, Inc. and Prentice      *
 * Hall. All Rights Reserved.                                             *
 *                                                                        *
 * DISCLAIMER: The authors and publisher of this book have used their     *
 * best efforts in preparing the book. These efforts include the          *
 * development, research, and testing of the theories and programs        *
 * to determine their effectiveness. The authors and publisher make       *
 * no warranty of any kind, expressed or implied, with regard to these    *
 * programs or to the documentation contained in these books. The authors *
 * and publisher shall not be liable in any event for incidental or       *
 * consequential damages in connection with, or arising out of, the       *
 * furnishing, performance, or use of these programs.                     *
 *************************************************************************/

⌨️ 快捷键说明

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