You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
183 B
C++

#include <iostream>
#include "ComplexNumber.cpp"
int main()
{
Complex C1(2.0,4.0);
Complex C2(1.0,3.0);
std::cout << C1 << "+" << C2 << "=" << C1 + C2;
return 0;
}