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.printlnRestaurant: name;
System.out.printlnCity: city;
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
