26 lines
601 B
Java
26 lines
601 B
Java
/**
|
|
* Assignment 23
|
|
* Skill: CISS238
|
|
* Student: Scott Steely
|
|
* Date: Oct 08, 2025
|
|
*/
|
|
|
|
package dropbox23;
|
|
|
|
public class Employee_Test {
|
|
public static void main(String[] args) {
|
|
|
|
Full_Time full_time_1 =
|
|
new Full_Time("John Doe", 2023-01-15, 1153.85);
|
|
System.out.println(full_time_1);
|
|
|
|
// InternationalStudent international =
|
|
// new InternationalStudent("Aarav Anand", 70);
|
|
// System.out.println(international);
|
|
|
|
// ParttimeStudent parttime =
|
|
// new ParttimeStudent("Vivaan Alex", 26);
|
|
// System.out.println(parttime);
|
|
|
|
}
|