โ Back to Classes
Question 101
Set and Get an Age
Set and Get an Age
Create a class named Student with one private member: int age. Requirements: 1. Create a default constructor Student() that sets age to 18. 2. Create a public setter setAge(int newAge) that updates age. 3. Create a public getter getAge() that returns age. IMPORTANT: Do NOT write a main method. A hidden Main will create a Student, call setAge(21), then print getAge(). Expected Output: 21
Expected Output:
21
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.