Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Task #1 The if Statement, Comparing Strings, and Flags 1. Copy the file PizzaOrder.java into NetBeans. 2. Compile and run PizzaOrder.java. You will be able

Task #1 The if Statement, Comparing Strings, and Flags

1. Copy the file PizzaOrder.java into NetBeans.

2. Compile and run PizzaOrder.java. You will be able to make selections, but at this point, you will always get a Hand-tossed pizza at a base cost of $12.99 no matter what you select, but you will be able to choose toppings, and they should add into the price correctly. You will also notice that the output does not look like money. So we need to edit PizzaOrder.java to complete the program so that it works correctly.

3. Construct a simple if statement. The condition will compare the String input by the user as his/her first name with the first names of the owners, Mike and Diane. Be sure that the comparison is not case sensitive.

4. If the user has either first name, set the discount flag to true. This will not affect the price at this point yet.

Task #2 The if-else-if Statement

1. Write an if-else-if statement that lets the computer choose which statements to execute by the user input size (10, 12, 14, or 16). For each option, the cost needs to be set to the appropriate amount.

2. The default else of the above if-else-if statement should print a statement that the user input was not one of the choices, so a 12 inch pizza will be made. It should also set the size to 12 and the cost to 12.99.

3. Compile, debug, and run. You should now be able to get correct output for size and price (it will still have Hand-tossed crust, the output wont look like money, and no discount will be applied yet). Run your program multiple times ordering a 10, 12, 14, 16, and 17 inch pizza.

Task #3 Switch Statement

1. Write a switch statement that compares the users choice with the appropriate characters (make sure that both capital letters and small letters will work).

2. Each case will assign the appropriate string indicating crust type to the crust variable.

3. The default case will print a statement that the user input was not one of the choices, so a Hand-tossed crust will be made.

4. Compile, debug, and run. You should now be able to get crust types other than Hand-tossed. Run your program multiple times to make sure all cases of the switch statement operate correctly.

Task #4 Using a Flag as a Condition

1. Write an if statement that uses the flag as the condition. Remember that the flag is a Boolean variable, therefore is true or false. It does not have to be compared to anything.

2. The body of the if statement should contain two statements:

a) A statement that prints a message indicating that the user is eligible for a $2.00 discount.

b) A statement that reduces the variable cost by 2.

3. Compile, debug, and run. Test your program using the owners names (both capitalized and not) as well as a different name. The discount should be correctly at this time.

Task #5 Formatting Numbers

1. Add an import statement to use the DecimalFormat class as indicated above the class declaration.

2. Create a DecimalFormat object that always shows 2 decimal places.

3. Edit the appropriate lines in the main method so that any monetary output has 2 decimal places.

4. Compile, debug, and run. Your output should be completely correct at this time, and numeric output should look like money.

/**

This program allows the user to order a pizza

*/

import java.util.Scanner;

import java.text.DecimalFormat;

public class PizzaOrder

{

public static void main (String [] args)

{

//TASK #5 Create a DecimalFormat object with 2 decimal places

DecimalFormat money = new DecimalFormat ("0.00"); // Help - this is the DicimalFormat

//Create a Scanner object to read input

Scanner keyboard = new Scanner (System.in);

String firstName; //user's first name

boolean discount = false; //flag, true if user is eligible for discount

int inches; //size of the pizza

char crustType; //code for type of crust

String crust = "Hand-tossed"; //name of crust

double cost = 12.99; //cost of the pizza

final double TAX_RATE = .08; //sales tax rate

double tax; //amount of tax

char choice; //user's choice

String input; //user input

String toppings = "Cheese "; //list of toppings

int numberOfToppings = 0; //number of toppings

//prompt user and get first name

System.out.println("Welcome to Mike and Diane's Pizza");

System.out.print("Enter your first name: ");

firstName = keyboard.nextLine();

//determine if user is eligible for discount by

//having the same first name as one of the owners

//ADD LINES HERE FOR TASK #1 step 3 use String function equalsIgnoreCase()

//prompt user and get pizza size choice

System.out.println("Pizza Size (inches) Cost");

System.out.println(" 10 $10.99");

System.out.println(" 12 $12.99");

System.out.println(" 14 $14.99");

System.out.println(" 16 $16.99");

System.out.println("What size pizza would you like?");

System.out.print("10, 12, 14, or 16 (enter the number only): ");

inches = keyboard.nextInt();

//set price and size of pizza ordered

//ADD LINES HERE FOR TASK #2

if (inches == 10)

{

cost = 10.99;

}

else if (inches == 12)

{

cost = 12.99;

}

// To do - Add inches 14, 16 here

else

{

System.out.println("That was not one of the choices, " +

"you will get a 12 inch pizza.");

inches = 12;

cost= 12.99;

}

//consume the remaining newline character

keyboard.nextLine();

//prompt user and get crust choice

System.out.println("What type of crust do you want? ");

System.out.print("(H)Hand-tossed, (T) Thin-crust, or " +

"(D) Deep-dish (enter H, T, or D): ");

input = keyboard.nextLine();

crustType = input.charAt(0);

//set user's crust choice on pizza ordered

//ADD LINES FOR TASK #3

switch (crustType)

{

case 'H':

case 'h':

crust = "Hand-tossed";

break;

// To do - and for other crust

default:

System.out.println("That was not one of the choices, " +

"you will get Hand-tossed.");

crust = "Hand-tossed";

}

//prompt user and get topping choices one at a time

System.out.println("All pizzas come with cheese.");

System.out.println("Additional toppings are $1.25 each,"

+" choose from");

System.out.println("Pepperoni, Sausage, Onion, Mushroom");

//if topping is desired,

//add to topping list and number of toppings

System.out.print("Do you want Pepperoni? (Y/N): ");

input = keyboard.nextLine();

choice = input.charAt(0);

if (choice == 'Y' || choice == 'y')

{

numberOfToppings += 1;

toppings = toppings + "Pepperoni ";

}

System.out.print("Do you want Sausage? (Y/N): ");

input = keyboard.nextLine();

choice = input.charAt(0);

if (choice == 'Y' || choice == 'y')

{

numberOfToppings += 1;

toppings = toppings + "Sausage ";

}

System.out.print("Do you want Onion? (Y/N): ");

input = keyboard.nextLine();

choice = input.charAt(0);

if (choice == 'Y' || choice == 'y')

{

numberOfToppings += 1;

toppings = toppings + "Onion ";

}

System.out.print("Do you want Mushroom? (Y/N): ");

input = keyboard.nextLine();

choice = input.charAt(0);

if (choice == 'Y' || choice == 'y')

{

numberOfToppings += 1;

toppings = toppings + "Mushroom ";

}

//add additional toppings cost to cost of pizza

cost = cost + (1.25*numberOfToppings);

//display order confirmation

System.out.println();

System.out.println("Your order is as follows: ");

System.out.println(inches + " inch pizza");

System.out.println(crust + " crust");

System.out.println(toppings);

//apply discount if user is elibible

//ADD LINES FOR TASK #4 HERE

//EDIT PROGRAM FOR TASK #5

//SO ALL MONEY OUTPUT APPEARS WITH 2 DECIMAL PLACES

System.out.println("The cost of your order is: $" + cost);

// TASK #5 help - System.out.println("The cost of your order is: $" + money.format(cost));

//calculate and display tax and total cost

tax = cost * TAX_RATE;

System.out.println("The tax is: $" + tax);

System.out.println("The total due is: $" + (tax+cost));

System.out.println("Your order will be ready for pickup in 30 minutes.");

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Readings In Database Systems

Authors: Michael Stonebraker

2nd Edition

0934613656, 9780934613651

More Books

Students also viewed these Databases questions

Question

5. Tell how job experiences can be used for skill development.

Answered: 1 week ago