Untitled

 avatar
unknown
plain_text
5 years ago
462 B
11
Indexable
import java.util.*;

public class Test
{

   public static void main(String[] args) {

     Instructor i = new Instructor("Sam","Carlo","9876541320","House Number 10","Diamond Street","Nebraska","Kamuna",54321,"[email protected]");

     i.print();

      Student s=new Student("Missy", "Smith", "1234567890", "House number 1", "Golden Street", "Dubai", "Dubai", 12345, "[email protected]" );

      s.addCourse();


      s.print();  



   }

}
Editor is loading...