第一题

#include  
using namespace std; 
class Complex 
 {public: 
   Complex(){real=0;imag=0;} 
   Complex(double r,double i){real=r;imag=i;} 
   double get_real(); 
   double get_imag(); 
   void display(); 
  private: 
   double real; 
   double imag; 
 }; 
  
double Complex::get_real() 
{return real;}  
double Complex::get_imag() 
{return imag;}  
void Complex::display() 
{cout<<"("<第一题_第1张图片 
  

你可能感兴趣的:(第四章)