Computer Science, asked by genat, 1 year ago

write a program to determine the volume of a cold storage of dimension 4m x 3m x 2m

Answers

Answered by Rumi123456789
5
public class VOLUME
{
public static void main(String args[])
{
int l=4;
int b=3;
int h=2;
double vol = (l*b*h);
System.out.println(" Volume of the cold storage = "+vol);
}
}
Similar questions