-
W. Spencer Smith authoredW. Spencer Smith authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
StudentView.java 270 B
public class StudentView {
public void printStudentDetails(String studentName, int studentNumber){
System.out.println("---Student---");
System.out.println("Name: " + studentName);
System.out.println("Student Number: " + studentNumber);
}
}