Question: JAVA - Define the Person class's setName ( ) mutator to set the field name to inputName and the setAge ( ) mutator to set

JAVA
-
Define the Person class's setName() mutator to set the field name to inputName and the setAge() mutator to set the field age to inputAge.
Ex: If the input is Fay 20, then the output is:
Person: Fay
Age: 20 years old
public class Person {
private String name;
private int age;
/* Your code goes here */
public void print(){
System.out.println("Person: "+ name);
System.out.println("Age: "+ age +" years old");
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!