Ж
Size: a a a
Ж
Ж
#ifndef COMPLEXX_H
#define COMPLEXX_H
#include <iostream>
class Complex
{
private:
int A;
int Bi;
public:
Complex();
Complex(double value);
Complex(double v1, double v2);
friend std::istream& operator >>(std::istream& in, Complex& c);
friend std::ostream& operator <<(std::ostream& out, Complex& c);
};
#endif
YS
Ж
Ж
Ж
Ж
VD
Ж
YS
YS
YS
VD
YS
#ifndef COMPLEXX_H
#define COMPLEXX_H
#include <iostream>
class Complex
{
private:
int A;
int Bi;
public:
Complex();
Complex(double value);
Complex(double v1, double v2);
friend std::istream& operator >>(std::istream& in, Complex& c);
friend std::ostream& operator <<(std::ostream& out, Complex& c);
};
#endif
YS
Ж
Ж
S
YS