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 then the output is:
Person: Fay
Age: years old
public class Person
private String name;
private int age;
Your code goes here
public void print
System.out.printlnPerson: name;
System.out.printlnAge: age years old";
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
