write a program in Java to find and display the volume of a cuboid by accepting the Length breadth and height from the user
Answers
Answered by
0
Answer:
import java.io.*;
class volume
{
public static void main(double l,double b,double h)
{
double volume;
volume=l*b*h;
System.out.println("the volume of cuboid ="+volume);
}
}
Explanation:
Similar questions