public class MyClass {
public static void main(String args[]) {
float length, width, height;
length = 6;
width = 4;
height = 5;
float volume = height * width * length;
System.out.println("Volume of Cuboid = " + volume);
}
}
/*
run:
Volume of Cuboid = 120.0
*/