Question: Create a class with a main method and three other methods. In the main method, declare double variables for length, width, and height of a

Create a class with a main method and three other methods. In the main method, declare double variables for length, width, and height of a 3D box. Implement methods for boxVolume, boxSurfaceArea, boxDiagonal. Be sure to fully comment the methods with javaDoc parameters @param and @return. In the main method print out the volume, surface area and diagonal for a given set of dimensions. You may get dimensions from user entry. Mathematical formulas for a box with length I, width w, and height h Volume: Iwh Surface area: 21w + 21h + 2wh Diagonal: (I^2 + w^2 + h^2)^(1/2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
