Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Chapter 4 Java Programming Lab; Task #1 The if Statement, Comparing Strings, and

ID: 3590495 • Letter: C

Question

Chapter 4 Java Programming Lab;

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

-Create a new project in NetBeans named PizzaOrder. Copy the code in file PizzaOrder.java into your new project.

Note: file PizzaOrder.java is listed below this instruction file.  Open the file using a text editor such as Nodepad)

-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.

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

-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

-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.

-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 pizza size to 12 and the cost to 12.99.

-Compile, debug, and run. You should now be able to get correct output for the pizza size and price (it will still have Hand-tossed crust, the output won’t 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 The switch Statement

-Write a switch statement that compares the user’s choice with the appropriate characters (make sure that both capital letters and small letters will work).

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

-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.

-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

-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.

-The body of the if statement should contain two statements:

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

-A statement that reduces the variable cost by 2.

-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 displayed correctly at this time.

Task #5 Formatting Output

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

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

Program;

package pizzaorder;
import java.util.Scanner; // Needed for the Scanner class
/**
This program allows the user to order a pizza.
*/

/**
*
* @author
*/
public class PizzaOrder {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
  
// Create a Scanner object to read input.
Scanner keyboard = new Scanner (System.in);
  
String firstName; // User's first name
boolean discount = false; // Flag for discount
int inches; // Size of the pizza
char crustType; // 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
  
  
// 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
  
  
  
// 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
  
  
  
// 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 eligible.
// ADD LINES FOR TASK #4 HERE
  
  
  
  
// EDIT PROGRAM FOR TASK #5

// SO ALL MONEY OUTPUT APPEARS WITH 2 DECIMAL PLACES
System.out.printf("The cost of your order " +
"is: $%f ", cost);

// Calculate and display tax and total cost.
tax = cost * TAX_RATE;
System.out.printf("The tax is: $%f ", tax);
System.out.printf("The total due is: $%f ",
(tax + cost));

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

Explanation / Answer


import java.util.Scanner; // Needed for the Scanner class
/**
This program allows the user to order a pizza.
*/
/**
*
* @author
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
  
// Create a Scanner object to read input.
Scanner keyboard = new Scanner (System.in);
  
String firstName; // User's first name
boolean discount = false; // Flag for discount
int inches; // Size of the pizza
char crustType; // 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
firstName = firstName.toLowerCase();
if(firstName.equals("mike")||firstName.equals("diane")){
discount=true;
}

//System.out.println(discount);
  
// 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;
}
else if (inches==14){
cost = 14.99;
}
else if (inches==16){
cost = 16.99;
}
else {
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);
char t = Character.toUpperCase(crustType);
// Set user's crust choice on pizza ordered.
// ADD LINES FOR TASK #3
switch (t) {
case 'T':
crust= "Thin-crust";
break;
case 'H':
crust= "Hand-tossed";
break;
case 'D':
crust= "Deep-dish";
break;
default:
System.out.println("The user input was not one of the choices, so a Hand-tossed crust will be made.");
}
  
  
// 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 eligible.
// ADD LINES FOR TASK #4 HERE
if(discount){
System.out.println("You are eligible for a $2.00 discount");
cost = cost -2;
}
  
  
  
// EDIT PROGRAM FOR TASK #5
// SO ALL MONEY OUTPUT APPEARS WITH 2 DECIMAL PLACES
System.out.printf("The cost of your order " +"%.2f ",cost);
// Calculate and display tax and total cost.
tax = cost * TAX_RATE;
System.out.printf("The tax is: $%.2f ", tax);
System.out.printf("The total due is: $%.2f ",
(tax + cost));
System.out.println("Your order will be ready " +
"for pickup in 30 minutes.");
}
  
}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote