Guest User

Untitled

a guest
Feb 25th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. a = 7; b = 18; c = -3;
  2.  
  3. a = 18; b = 7; c = -3;
  4.  
  5. if (a > b) then Swap(a, b);
  6. if (b > c) then Swap(b, c);
  7. if (a > b) then Swap(a, b);
Add Comment
Please, Sign In to add comment