Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Problem D (25 pts.) The transactions at a store are saved in a txt file with the following pre-specified format: SKU,Quantity,Price,Description 4039,50,0.99,SODA9100,5,9.50,T-SHIRT1949,30,110.00,JAVAPROGRAMMINGTEXTBOOK5199,25,1.50,COOKIE Write a program

image text in transcribed

Problem D (25 pts.) The transactions at a store are saved in a txt file with the following pre-specified format: SKU,Quantity,Price,Description 4039,50,0.99,SODA9100,5,9.50,T-SHIRT1949,30,110.00,JAVAPROGRAMMINGTEXTBOOK5199,25,1.50,COOKIE Write a program TransactionReport.java that prompts the user for the name of the input file, reads the transactions from the file, after skipping over the first line which is the header. The program then produces a transaction report by first computing the sale amount for each item as a product of the quantity and price, and then computing the total sale across all the items. Thus, the output produced by processing the above file is as follows. Input cmd: java TransactionReport Output: Please enter the transaction filename: Transactions.txt Sold 50 of SODA (SKU: 4039) at $0.99 each. Sale is $49.50 Sold 5 of T-SHIRT (SKU: 9100) at $9.50 each. Sale is $47.50 Sold 30 of JAVA PROGRAMMING TEXTBOOK (SKU: 1949) at $110.00 each. Sale is $3300.00 sold 25 of COOKIE (SKU: 5199) at $1.50 each. Sale is $37.50 Total sales: $3434.50

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

Beginning Databases With PostgreSQL From Novice To Professional

Authors: Richard Stones, Neil Matthew

2nd Edition

1590594789, 978-1590594780

More Books

Students also viewed these Databases questions