Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. if a > b {
  2. if a > c {
  3. max a
  4. if b > c {
  5. min c
  6. } else {
  7. min b
  8. }
  9. } else {
  10. max c
  11. min b
  12. }
  13. } else {
  14. if b > c {
  15. max b
  16. if a > c {
  17. min c
  18. } else {
  19. min a
  20. }
  21. } else {
  22. max c
  23. min a
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement