Classes for Hospital

Report a typo

In this problem, you need to develop a class hierarchy for the Hospital System.

The root of the hierarchy is the Person class. It represents all employees and patients of the hospital.

Please do not make the classes public.

Write a program in Java 17
class Person {
}

class Employee {
}

class Patient {
}

Create a free account to access the full topic