Question: Given the height, length, and width of a box, assign boxVolume with the volume of the box. Ex: If the input is 3 1 8

Given the height, length, and width of a box, assign boxVolume with the volume of the box.
Ex: If the input is 3189, then the output is:
Volume: 486
Note: The volume of a box is calculated by multiplying height, length, and width.
public class BoxMeasurements {
public static void main(String[] args){
Scanner scnr= new Scanner(
System.in);
int height;
int length;
int width;
int boxVolume;
height =scnr* nextInt () ;
length = scnr. nextInt () ;
width =scnr.nextInt();
/your code goes here/l
System.out.println("Volume: "+ boxVolume);
}
}
 Given the height, length, and width of a box, assign boxVolume

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!