Computer Science, asked by anandiairy53, 6 months ago

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 palakdeora
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