Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is Java Problem 4: Write a program that accepts the name, quantity, and price of three items. The name should not contain spaces. Output
This is Java
Problem 4: Write a program that accepts the name, quantity, and price of three items. The name should not contain spaces. Output a bill with a tax rate of 6.25%. All prices should be displayed with two decimal places. The bill should be formatted in columns with 30 characters for the name, 10 characters for the quantity, 10 characters for the price, and 10 characters for the total. Sample input and output is shown as follows: Input name of item 1: lollipops Input quantity of item 1: 10 Input price of item 1: 0.50 Input name of item 2: diet soda Input quantity of item 2: Input price of item 2: 1.25 Input name of item 3: chocolate bar Input quantity of item 3: 20 Input price of item 3: 0.75 Your bill: ltem Lollipops diet soda chocolate bar Total 5.00 3.75 15.00 Quantity 10 Price 0.50 1.25 0.75 20 Subtotal 6.25% sales tax Total 23.75 1.48 25.23Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started