()
| 22 | System.out.println(); |
| 23 | } |
| 24 | void display() { |
| 25 | System.out.println("Displaying student details: "); |
| 26 | System.out.println("Name: " + name); |
| 27 | System.out.println("ID: " + id); |
| 28 | System.out.println("Year: " + year); |
| 29 | System.out.println("Course: " + course); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | class Teacher extends Person { |