Hey Guys .
//need help of this Activity if you would mind ..
Sales.txt
Day 1, Product 1, 5000
Day 1, Product 2, 5859.99
Day 1, Product 3, 6001.75
Day 2, Product 1, 5555
Day 2, Product 2, 7750.99
Day 2, Product 3, 6000
Day 3, Product 1, 5877.85
Day 3, Product 2, 5559.30
Day 3, Product 3, 6578.98
//I want to make the Sales.txt into this
TITLE : FILEreader and FILEwriter ..
Create a program named SalesSummary that reads its input from a text file named sales.txt. The program will then have a method that will separate and display the tokens in this table format below:
Product 1 Product 2 Product 3
Day 1 5000 5859.99 6001.75
Day 2 5555 7750.99 6000
Day 3 5877.85 5559.30 6578.98
Aside from displaying the sales write your output in a text file named salesFile.txt
//my instructor said that if your run it in
JAVA the data will store in Notepad . I need some guides of you Guys ..
THANKS