Complete the class RunStudents. The outline of the class is as follows: public class RunStudents { public static void main(String[] args) { //add code for 1. //add code for 2. } } 1 Create an object of the type StudentLoans.. 2 Call the menuControl() in the StudentsLoan class by using the object defined in 1.
1
Expert's answer
2021-10-10T01:49:12-0400
public class RunStudents {
public static void main(String[] args) {
//add code for 1.
StudentLoan s=new StudentLoan();
//add code for 2.
s.menuControl();
}
}
Comments
Leave a comment