Write a program to determine the volume of a cold storage of dimension 4m x 3m x 2m
Answer»
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); } }