Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <algorithm>
- #include <deque>
- #include <complex>
- using namespace std;
- bool Kriterij (complex<double< z1, complex<double> z2) {
- if (z1.real()==z2.real())
- return z1.imag()<z2.imag();
- else return z1.real()<z2.real();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement