Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions