Advertisement
madras

Untitled

Mar 11th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. Complex operator+(double & t, Complex & s)
  2. {
  3.     return Complex(s.GetReal() + t, s.GetImaginary());
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement