Advertisement
Guest User

main.cpp

a guest
Apr 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <math.h>
  4. #include "Header.h"
  5. using namespace std;
  6. int main()
  7. {
  8.     Fcomplex <double> S (1.3, 5.);
  9.     Fcomplex <double> P(1., 3.);
  10.     cout << P + S <<endl;
  11.     cout << S * P << endl;
  12.     system("pause");
  13.     return(0);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement