Skip to content

Instantly share code, notes, and snippets.

@andatoshiki
Created March 17, 2025 05:13
Show Gist options
  • Save andatoshiki/0668168152450e959a9f184b8b9c69f1 to your computer and use it in GitHub Desktop.
Save andatoshiki/0668168152450e959a9f184b8b9c69f1 to your computer and use it in GitHub Desktop.

Required Skills Inventory

  • Import features from the Java Standard Library
  • Declare and instantiate a Scanner
  • Get input from the user using a Scanner
  • Use a while loop to get the computer to repeat instructions
  • Use a for loop to get the computer to repeat instructions
  • Use a switch/case structure to get the computer to make a decision
  • Use nested loops and decisions to control the flow of a program
  • Accumulate a total in a variable
  • Use concatenation to construct a String value
  • Use System.out.printf to display numbers with a specified precision

Do not use any language features that have not been covered to this point in the course materials.

Problem Description and Given Info

You've been asked to develop a point of sale system for "Patty's Cakes", a popular cupcake bakery in town. The program should allow users to order a pack of cupcakes, select flavors from a menu, and compute the total cost of their order.

"Patty's Cakes" specializes in cupcakes. Customers have the option to buy a 4-pack or a 6-pack of cupcakes. Each pack can be filled with a variety of flavors, with each flavor priced differently. Your task is to create a program that guides the user through their cupcake selection and calculates the total price of their order.

Specifications:

Pack Selection:

Prompt the user to choose between a 4-pack or a 6-pack of cupcakes.

Ensure the user's choice is valid. If not, prompt them again.

Cupcake Menu:

Display a menu with these 4 cupcake flavors and their respective prices:

  • Vanilla Delight: $2.50
  • Chocolate Dream: $3.00
  • Strawberry Bliss: $2.75
  • Caramel Drizzle: $3.50

Cupcake Selection:

Prompt the user to select a flavor from the menu to add to their pack. Ensure the user's choice is valid. If not, prompt them again.

Repeat the process until the chosen pack (4 or 6) is full.

Order Summary:

Once the pack is full, display a list of the chosen cupcakes. Display sales total cost of the order (Pre-Tax). Calculate and display the sales tax of the order. Calculate and display the Total Amount the customer should pay (sales + tax).

Expected Output:

Welcome to Patty's Cakes!

How many cupcakes would you like, 4 or 6? 3
Invalid selection, please try again.
How many cupcakes would you like, 4 or 6? 4
Great! Let's start filling your 4-pack.

Cupcake Menu:
1. Vanilla Delight:  $2.50
2. Chocolate Dream:  $3.00
3. Strawberry Bliss: $2.75
4. Caramel Drizzle:  $3.50
Select cupcake #1: 2
Select cupcake #2: 5
Invalid selection, please try again.
Select cupcake #2: 3
Select cupcake #3: 1
Select cupcake #4: 1

Here are the cupcakes in your pack:
   - Chocolate Dream
   - Strawberry Bliss
   - Vanilla Delight
   - Vanilla Delight

Sales Total:      $10.75
8% Sales Tax:     $0.86
Total:            $11.61

Thank you for ordering from Patty's Cakes!

Make sure that you output matches the example exactly.**

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment