Advertisement
Lauda

Untitled

Feb 7th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. const Complex& Complex :: operator++()
  2. {
  3.     real++;
  4.     imag++;
  5.  
  6.     return *this;
  7. }
  8.  
  9. const Complex Complex :: operator++(int i)
  10. {
  11.     Complex w(real, imag);
  12.     real++;
  13.     imag++;
  14.  
  15.     return w;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement