Java Programming
Java Programming
8th Edition
ISBN: 9781305981829
Author: Joyce Farrell
Publisher: Cengage Limited
Expert Solution & Answer
Book Icon
Chapter 3, Problem 1CP

Explanation of Solution

a.

CarlysEventPriceWithMethods.java

//import the required packages

import java.util.Scanner;

//define a method CarlysEventPriceWithMethods

public class CarlysEventPriceWithMethods

{

//Scanner object

private static Scanner sc = new Scanner(System.in);

//define a method getEventNum()

public static String getEventNum()

{

//print the statement

System.out.println("Enter event number: ");

//scan the values

return sc.next();

}

//define the method getNoGuests

public static int getNoOfGuests()

{

//print the statement

System.out.println("Enter no of guests: ");

//return the value scanned

return sc.nextInt();

}

//define the method displayMotto()

public static void displayMotto(Event e)

{

//prin the values

System.out.println(String.format("%26s", " ").replace(" ", "*"));

System.out.printf("* %22s *", " ");

System.out.println("\n* Carly’s Catering *");

System.out.printf("* %22s *\n", " ");

System.out.println(String.format("%26s", " ").replace(" ", "*"));

System.out.println("Event No: " + e.getEventNum());

System.out.println("No. of guests:" + e.getNoOfGuest());

System.out.println("Price per guest: $" + Event.PRICE_PER_GUEST);

//call the method computePrice

computePrice(e);

}

//define the method computePrice

public static void computePrice(Event e)

{

//print the values

System.out.println("Price: $" + e.getPrice());

System.out.println("Large event: " + ((e.getNoOfGuest() > Event.CUT_OFF) ? "Yes" : "No"));

}

//define the main method

public static void main(String[] args)

{

//Close scanner

sc.close();

}

}

Explanation:

The above snippet of code is used to create a class “CarlysEventPriceWithMethods”. In the code,

  • Import the required header files.
  • Define a class “CarlysEventPriceWithMethods”
    • Declare the object of “Scanner” class.
    • Define the “getEventNum()” method.
      • Prompt the user to enter the event number.
      • Return the value of “name”.
    • Define the “getNoGuests()” method.
      • Return the scanned value.
    • Define the “displayMotto()” method.
      • Print the values.
      • Call the method “computePrice()”.
    • Define the “computePrice()” method.
      • Print the values.
    • Define the “main()” method.
      • Close the scanner.

b.

Event.java

//define a class Event

public class Event

{

//declare the class members

public final static int PRICE_PER_GUEST = 35;

public final static int CUT_OFF = 50;

private String eventNum;

private int noOfGuest;

private int price;

//define a method setEventNum()

public void setEventNum(String eventNum)

{

//set the value of eventNum

this.eventNum = eventNum;

}

//define a method setNoOfGuest()

public void setNoOfGuest(int noOfGuest)

{

//set the values of noOfGuest

this.noOfGuest = noOfGuest;

//set the values of price

this...

Blurred answer
Students have asked these similar questions
When the given integer variable numberOfPackages is: greater than 12, output "Needs more than one box". between 5 inclusive and 12 inclusive, output "Large box". between 0 exclusive and 4 inclusive, output "Small box". less than or equal to 0, output "Invalid input". End with a newline.
summarize in a short paragraph how to Advance Incident Response and Automation in ML home based security systems
1.[30 pts] Computers generate color pictures on a video screen or liquid crystal display by mixing three different colors of light: red, green, and blue. Imagine a simple scheme, with three different lights, each of which can be turned on or off, projecting onto a glass screen: We can create eight different colors based on the absence (0) or presence (1) of light sources R,G and B: R G B Color 0 0 0 Black 0 0 1 Blue 0 1 0 Green 0 1 1 Cyan 1 0 0 Red 1 0 1 Magenta 1 1 1 0 Yellow 1 White 1 Each of these colors can be represented as a bit vector of length 3, and we can apply Boolean operations to them. a. The complement of a color is formed by turning off the lights that are on and turning on the lights that are off. What would be the complement of each of the eight colors listed above? b. Describe the effect of applying Boolean operations on the following colors: Λ 1. Red(100) ^ Magenta(101)= Blue(001) 2. Bue(001) | Green(010)= 3. Yellow(100) & Cyan(011)= 2.[30 pts] Perform the following…
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781305480537
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:9781337102124
Author:Diane Zak
Publisher:Cengage Learning