Advertisement
sellmmaahh

2013-zad7

Jul 28th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <algorithm>
  3. #include <deque>
  4. #include <complex>
  5.  
  6. using namespace std;
  7.  
  8. bool Kriterij (complex<double< z1, complex<double> z2) {
  9. if (z1.real()==z2.real())
  10. return z1.imag()<z2.imag();
  11. else return z1.real()<z2.real();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement