Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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:

image text in transcribed

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:

image text in transcribed

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

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

Semantics In Databases Second International Workshop Dagstuhl Castle Germany January 2001 Revised Papers Lncs 2582

Authors: Leopoldo Bertossi ,Gyula O.H. Katona ,Klaus-Dieter Schewe ,Bernhard Thalheim

2003rd Edition

3540009574, 978-3540009573

More Books

Students also viewed these Databases questions