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:

A Java question. You are given a text file containing the contents

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:

of a shopping cart at a grocery store. The records consists of

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

item Price quantity raman 0.50 5 whole wheat bread 2.48 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!