Question: In the Contestant class, complete the public method definition for setAge ( ) with the integer parameter customAge. Ex: If the input is Minenhle 7

In the Contestant class, complete the public method definition for setAge() with the integer parameter customAge.
Ex: If the input is Minenhle 7442, then the output is:
Name: Minenhle
Number of points: 74
Age: 42 public class Contestant {
private String name;
private int numPoints;
private int age;
public void setName(String customName){
name = customName;
}
public void setNumPoints(int customNumPoints){
numPoints = customNumPoints;
}
/* Your code goes here */{
age = customAge;
}
public String getName(){
return name;
}
public int getNumPoints(){
return numPoints;
}
public int getAge(){
return age;
}
} import java.util.Scanner;
public class ContestantAccess {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
Contestant contestant1= new Contestant();
String userName;
int userNumPoints;
int userAge;
userName = scnr.next();
userNumPoints = scnr.nextInt();
userAge = scnr.nextInt();
contestant1.setName(userName);
contestant1.setNumPoints(userNumPoints);
contestant1.setAge(userAge);
System.out.println("Name: "+ contestant1.getName());
System.out.println("Number of points: "+ contestant1.getNumPoints());
System.out.println("Age: "+ contestant1.getAge());
}
}

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!