main.cpp
unknown
c_cpp
4 years ago
172 B
6
Indexable
// main.cpp
#include <iostream>
#include "./complex.h"
using namespace std;
int main() {
Complex c = Complex(1, 2);
cout << c << endl;
return 0;
}Editor is loading...
// main.cpp
#include <iostream>
#include "./complex.h"
using namespace std;
int main() {
Complex c = Complex(1, 2);
cout << c << endl;
return 0;
}