Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Mastering Real Time Analytics In Big Data A Comprehensive Guide For Everyone

Authors: Lennox Mark

1st Edition

B0CPTC9LY9, 979-8869045706

More Books

Students also viewed these Databases questions