Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public static void main(String[] args) {
  2.  
  3. System.out.println("Welcome to the interactive demo!");
  4.  
  5. Student[] mainArr = deepCopy(readList());
  6. System.out.println("Average score is: " + averageScore(mainArr));
  7.  
  8. System.out.println("Array sorted by Name: ");
  9. sortByName(mainArr);
  10. displayList(mainArr);
  11. // retrieveScore(mainArr, name); unsure
  12.  
  13. System.out.println("Array sorted by Merit: ");
  14. meritSort(mainArr);
  15. displayList(mainArr);
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. System.out.println("Thank you for using the demo!");
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement