Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #ifndef COMPLEX_H
  2. #define COMPLEX_H
  3.  
  4. //class complex
  5. //{
  6. //    public:
  7. //    double re;
  8. //    double im;
  9. //};
  10.  
  11. struct complex
  12. {
  13.     double re;
  14.     double im;
  15. };
  16.  
  17. bool equals(const complex& a, const complex& b);
  18.  
  19.  
  20. #endif // COMPLEX_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement