Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const Complex& Complex :: operator++()
- {
- real++;
- imag++;
- return *this;
- }
- const Complex Complex :: operator++(int i)
- {
- Complex w(real, imag);
- real++;
- imag++;
- return w;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement