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 then the output is:
Voicemail: Hello, this is Ken at area code import java.util.Scanner;
public class MessageInfo
public static void mainString args
Scanner scnr new ScannerSystemin;
Message voicemail new Message;
String inputGreeting;
int inputAreaCode;
inputGreeting scnrnext;
inputAreaCode scnrnextInt;
Your code goes here
System.out.printVoicemail: voicemail.getGreeting;
System.out.println at area code voicemail.getAreaCode;
public class Message
private String greeting;
private int areaCode;
public void setGreetingString inputGreeting
greeting "Hello, this is inputGreeting;
public void setAreaCodeint 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
