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:25 pm
Write a java program to read from a file called "input.txt". The file includes name price for unknown number of items. The file is as the sample below. The program should print on Screen, the following: Total number of items The items (name, and price) for all items with price increased by 10%. o Hint: new price = old price + old price*10/100; Input.txt Table 30.500 Chair 100.00 I
Output on Screen Number of items = 25 Items with new price: Table 33.550 Chair 110.000 ....
Output on Screen Number of items = 25 Items with new price: Table 33.550 Chair 110.000 ....