1. WAP that calculate volume of water tank whose length , breadth and height are 15ft ,6 ft and and 5 ft respectively.
Answers
Answered by
0
Answer:
Program:
public class Volume
{
public static void main(String args[ ])
{
int l=15,b=6,h=5,v=0;
v=l*b*h;
System.out.println("The volume of water tank="+v);
}
}
Similar questions