Question:
Java program that will read and process customer order history
Making a file that Develop an application that will read and process customer history order information from a file. Each record of the text file contains a customer ID, order number, and total of order. An example book order file:
10051 1234567 150.00
10052 1234568 200.00
10051 1234569 120.00
The file can contain several entries for the same customer ID. Your application should accumulate the total spent for each customer as you read the order information from the file. The application should print total spent for each customer.