Complete the program below that asks the user for a store number as integer, name of two items, and the price of the two items. The program should calculate the total price before tax, the total price after tax (assume tax is 6%), and the average price using the total price with tax. The program should then display the store number, the name and price of each item, the total price before tax, the total price after tax, and the average price. The program will read input by printing the following messages: Enter store number: Enter name of first item: Enter price of first item: Enter name of second item: Enter price of second item: Note: no loops or arrays should be used in this program. The following are examples of running the program. Underlined text represents input provided by the user. Enter store number: 12347 Enter name of first item: Apple Juice Enter price of first item: 5.98 Enter name of second item: Peaches Enter price of second item: 7.75 import java.util.Scanner; public class StoreReceipt [ public static void main(String[] args) { Scanner input new Scanner(System.in); /*Write your program here "/ input.close(); }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter4: Control Structures I (selection)
Section: Chapter Questions
Problem 19PE: Ron bought several acres of farm to grow and sell vegetables. Suppose that Ron wants to grow a...
icon
Related questions
Question
Complete the program below that asks the user for a store number as integer, name of two items, and the price of the two items.
The program should calculate the total price before tax, the total price after tax (assume tax is 6%), and the average price using the total price with tax.
The program should then display the store number, the name and price of each item, the total price before tax, the total price after tax, and the average price. The program will read input by printing the following messages:
Enter store number:
Enter name of first item:
Enter price of first item:
Enter name of second item:
Enter price of second item:
Note: no loops or arrays should be used in this program.
The following are examples of running the program. Underlined text represents input provided by the user.
Enter store number: 12347
Enter name of first item: Apple Juice
Enter price of first item: 5.98
Enter name of second item: Peaches
Enter price of second item: 7.75
import java.util.Scanner;
public class StoreReceipt {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
/* Write your program here */
input.close();
}
Transcribed Image Text:Complete the program below that asks the user for a store number as integer, name of two items, and the price of the two items. The program should calculate the total price before tax, the total price after tax (assume tax is 6%), and the average price using the total price with tax. The program should then display the store number, the name and price of each item, the total price before tax, the total price after tax, and the average price. The program will read input by printing the following messages: Enter store number: Enter name of first item: Enter price of first item: Enter name of second item: Enter price of second item: Note: no loops or arrays should be used in this program. The following are examples of running the program. Underlined text represents input provided by the user. Enter store number: 12347 Enter name of first item: Apple Juice Enter price of first item: 5.98 Enter name of second item: Peaches Enter price of second item: 7.75 import java.util.Scanner; public class StoreReceipt { public static void main(String[] args) { Scanner input = new Scanner(System.in); /* Write your program here */ input.close(); }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning