Question: Define the Restaurant class's setName ( ) mutator to set the field name to inputName, followed by ' s Buffet, and the setCity (

Define the Restaurant class's setName() mutator to set the field name to inputName, followed by "'s Buffet", and the setCity()
mutator to set the field city to inputCity.
Ex: If the input is:
Mai
Montgomery
then the output is:
Restaurant: Mai's Buffet
City: Montgomery
public class Restaurant {
private String name;
private String city;
//
public void print(){
System.out.println("Restaurant: "+ name);
System.out.println("City: "+ city);
}
}
 Define the Restaurant class's setName() mutator to set the field name

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!