using a buffer reader in java to produce this output from the input file
20 10 8 4.5 8.45 12.2 8.0 2.5 4.0 1.0 15.0 18.0 3.5 3.5 3.5 6.0 5.0 10.0 using a buffer reader in java to produce this output from the input file taking the first column as the width and the next as the height and the last column as the length and getting volume. A ball can be contained in the box the diameter of the ball will be used to ascertain what box it can enter. The different values of the box like width height length and volume should be printed to find the box which can hold the ball using its diameter. but the ball that can enter the box output and printing the width length volume and height output should be separate. Here is a Java program that implements the functionality you described:import java.io.BufferedReader;import java.io.FileReader;import java.io.IOExcept…Expert Answer
OR