I am getting errors: E0493 and E0079, when implementing my complex number class

后端 未结 0 631
盖世英雄少女心
盖世英雄少女心 2020-12-14 08:21

here is my header file:

#ifndef COMPLEX_HPP
#define COMPLEX_HPP

class Complex
{
private:
    float real, imag;
public:
    Complex(float R, float I);
    flo         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题