EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
9th Edition
ISBN: 9781337671385
Author: FARRELL
Publisher: CENGAGE LEARNING - CONSIGNMENT
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
What are the major threats of using the internet? How do you use it? How do children use it? How canwe secure it? Provide four references with your answer. Two of the refernces can be from an article and the other two from websites.
Assume that a string of name & surname is saved in S. The alphabetical characters in S can be in lowercase and/or uppercase letters. Name and surname are assumed to be separated by a space character and the string ends with a full stop "." character. Write an assembly language program that will copy the name to NAME in lowercase and the surname to SNAME in uppercase letters. Assume that name and/or surname cannot exceed 20 characters. The program should be general and work with every possible string with name & surname. However, you can consider the data segment definition given below in your program. .DATA S DB 'Mahmoud Obaid." NAME DB 20 DUP(?) SNAME DB 20 DUP(?) Hint: Uppercase characters are ordered between 'A' (41H) and 'Z' (5AH) and lowercase characters are ordered between 'a' (61H) and 'z' (7AH) in the in the ASCII Code table. For lowercase letters, bit 5 (d5) of the ASCII code is 1 where for uppercase letters it is 0. For example, Letter 'h' Binary ASCII 01101000 68H 'H'…
What did you find most interesting or surprising about the scientist Lavoiser?
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