Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using NetBeans Java this what I have so far. I dont know how complete it. Company began as one small storefront in downtown Phoenix until

Using NetBeans Java this what I have so far. I dont know how complete it.

Company began as one small storefront in downtown Phoenix until the business grew so largethat now Beverly would like a software company to have an application that customers can use to place their orders from inside the storefront at kiosks and online. Beverly would like that application to have the company name and logo at the top of the order screen, with the bread options listed, and for the customer to be able to see their order is confirmed after they submit it. This application should increase profits by allowing Beverly to take orders in advance so the list of fresh baked breads every day is in the correct quantity for the needs of her customers. It should be a simple and small three page application with the order menu on the first page or tab and the confirmation of the order on the third page or tab.

//Bread choices

breads[0] = "White Bread";

breads[1] = "Wheat Bread";

breads[2] = "Rye Bread";

breads[3] = "Pumpernickel Bread";

breads[4] = "Baguette";

//Prices for the breads

double[] prices = new double[5];

prices[0] = 2.99;

prices[1] = 3.49;

prices[2] = 3.99;

prices[3] = 4.49;

prices[4] = 4.99;

//Customer's Name

System.out.println("Enter customer's name: ");

String name = input.nextLine();

//Customer's Phone Number

System.out.println("Enter customer's phone number: ");

String phoneNumber = input.nextLine();

image text in transcribedimage text in transcribedimage text in transcribed

File Order Welcome Information Confirmation Beverly's Best Baked Breads Order Please enter your information: Name: Enter Text Phone Number: Enter Text Email: Enter Text Enter Quality Enter Quality Enter Quality Enter Quality Enter Quality Order Summary:

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

Combinatorial Testing In Cloud Computing

Authors: Wei-Tek Tsai ,Guanqiu Qi

1st Edition

9811044805, 978-9811044809

More Books

Students also viewed these Programming questions

Question

Difference between truncate & delete

Answered: 1 week ago