Answered You can hire a professional tutor to get the answer.

QUESTION

Java Question (Exception- catch and try) Question 1 A store owner keeps a record of daily cash transactions in a text file. Each line contains three...

Java Question (Exception- catch and try)

Question 1

A store owner keeps a record of daily cash transactions in a text file. Each line contains three items: The invoice number, the cash amount, and the letter P if the amount was paid or R if it was received. Items are separated by spaces. Write a program that prompts the store owner for the amount of cash at the beginning and end of the day, and the name of the file. Your program should check whether the actual amount of cash at the end of the day equals the expected value.

You should use Catch exceptions technique when you open the file i.e. (try and catch).

Assume that the file contains records of one working day.

import java.io.File;import java.io.FileNotFoundException;import java.util.ArrayList;import java.util.Scanner;public class program5 {/**** @param args Command line arguments* @throws...
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question