Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. if (x1 < y1)
  2. return 1;
  3. else if (x1 == y1)) {
  4. if (x2 < y2)
  5. return 1;
  6. else if (x2 == y2) {
  7. if (x3 < y3)
  8. return 1;
  9. } else
  10. return 0;
  11. }
  12. } else
  13. return 0;
  14.  
  15. if (x1 < y1 || (x1 == y1 && x2 < y2) || (x1 == y1 && x2 == y2 && x3 < y3))
  16. return 1;
  17. else
  18. return 0;
  19.  
  20. A + (A1 * B) + (A1 * B1 * C)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement