Question
A Java question. You are given a text file containing the contents of a shopping cart at a grocery store. The records consists of a
A Java question. You are given a text file containing the contents of a shopping cart at a grocery store. The records consists of a item name (which can be any number of words) a price, and a quantity separated by one or more white spaces. The file has this format:
You are to complete the class called GroceryCart.
which will read the items and then print: the name, the price, the quantity, and the extended price. Extended price is the quantity * the price. Use printf to format the output so that it is displayed in columns. The column with the name will be 20 characters wide an left justified. Each of the numbers will 8 characters wide and right justified. Price and extended price should have 2 decimal places. After all items are processed, print the word Total:, a space, a $ and then the total value of all the items in the cart (with 2 decimal places). It will look like this:
--------------Here is a file that will be used . Copy it into your project------------------------------------------
item price quantity raman 0.33 5 whole wheat bread 2.48 1 edamame 1.85 2 corn tortillas 0.75 3 apples 1 2 salmon 11.90 1 paneer 3.29 1 tofu 1.75 2 dried chilies 1.05 5
-----------------------------------------------------------------------------------------------------------------------
Declare that the main method throws an exception when the file is not found.
Here is a starter. You need to define te file name as shown
public class GroceryCart { public static void main(String[] args) throws FileNotFoundException { String fileName = "items.txt"; //SUB "items2.txt" //your code here } }
please show your code and output, thank you.
item Price quantity raman 0.50 5 whole wheat bread 2.48 1Step 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