Pabl0o0

Untitled

Apr 4th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public void compare(Student st1, Student st2) {
  2. // TODO Auto-generated method stub
  3. if (st1.getImie().compareTo(st2.getImie())>0){
  4. Student tmp = st1;
  5. st1 = st2;
  6. st2 = tmp;
  7. }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment