Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. if (userInput.equals("v")) {
  2. for (Student value : sMap.values()) {
  3. System.out.println("First name: " + s.getFirstName());
  4. System.out.println("Last name: " + s.getLastName());
  5. System.out.println("ID: " + s.getID());
  6. System.out.println("Class Standing: " + s.getClassStanding());
  7. System.out.println("GPA: " + s.getGPA());
  8. System.out.println("");
  9. for (int i = 0; i < s.courses.size(); i++) {
  10. System.out.println(s.courses.get(i));
  11. }
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement