()
| 34 | public int expYears; |
| 35 | public String subject; |
| 36 | void getDetails() { |
| 37 | System.out.println("Enter name: "); |
| 38 | name = sc.nextLine(); |
| 39 | System.out.println("Enter id: "); |
| 40 | id = sc.nextInt(); |
| 41 | System.out.println("Enter years of experience: "); |
| 42 | expYears = sc.nextInt(); |
| 43 | System.out.println("Enter subject: "); |
| 44 | subject = sc.next(); |
| 45 | } |
| 46 | void display() { |
| 47 | System.out.println("Displaying teacher details: "); |
| 48 | System.out.println("Name: " + name); |