Question: The setGreeting ( ) mutator sets field greeting to Hello, this is , followed by inputGreeting, and the setAreaCode ( ) mutator sets field

The setGreeting() mutator sets field greeting to "Hello, this is ", followed by inputGreeting, and the setAreaCode() mutator sets field areaCode to inputAreaCode. In main(), call setGreeting() and setAreaCode(), passing arguments inputGreeting and inputAreaCode, respectively.
Ex: If the input is Ken 425, then the output is:
Voicemail: Hello, this is Ken at area code 425 import java.util.Scanner;
public class MessageInfo {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
Message voicemail = new Message();
String inputGreeting;
int inputAreaCode;
inputGreeting = scnr.next();
inputAreaCode = scnr.nextInt();
/* Your code goes here */
System.out.print("Voicemail: "+ voicemail.getGreeting());
System.out.println(" at area code "+ voicemail.getAreaCode());
}
} public class Message {
private String greeting;
private int areaCode;
public void setGreeting(String inputGreeting){
greeting = "Hello, this is "+ inputGreeting;
}
public void setAreaCode(int inputAreaCode){
areaCode = inputAreaCode;
}
public String getGreeting(){
return greeting;
}
public int getAreaCode(){
return areaCode;
}
}

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!