chriscct1

Untitled

Nov 18th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public void displayStudents(Student[]students) {
  2. for (int i=0;i<students.length;i++) { // For each student in the array of students
  3. System.out.println(students[i].getStudentName());
  4. }
  5. }
Advertisement
Add Comment
Please, Sign In to add comment