Page 1 of 1

Write a java program to read from a file called "input.txt". The file includes name price for unknown number of items. T

Posted: Sat May 14, 2022 3:21 pm
by answerhappygod
Write A Java Program To Read From A File Called Input Txt The File Includes Name Price For Unknown Number Of Items T 1
Write A Java Program To Read From A File Called Input Txt The File Includes Name Price For Unknown Number Of Items T 1 (52.03 KiB) Viewed 66 times
Write a java program to read from a file called "input.txt". The file includes name price for unknown number of items. The file uses a comma separated file format, as the sample below. Input.txt Table,30.500 Chair,100.00 1 I The program should print on Screen, the following: Total number of items The items (name, and price) for all items with price decreased by 10%. Hint: new price = old price - old price*10/100.