subject

Public class DebugBox {
private int width;
private int length;
private int height;
public DebugBox()
{
length = 1;
width = 1;
height = 1;
}
public DebugBox(int width, int length, int height)
{
width = width;
length = length;
height = height;
}
public void showData()
{
System. out. println("Width: " + width + "Length: " +
length + "Height: "+ height);
}
public double getVolume()
{
double vol = length * width * height;
return vol;
}
}

// This class uses a DebugBox class to instantiate two Box objects
public class DebugFour3
{
public static void main(String args[])
{
int width = 12,
length = 10,
height = 8;
DebugBox box1 = new DebugBox();
DebugBox box2 = new DebugBox(width, length, height);
System. out. println("The dimensions of the first box are");
box1.showData();
System. out. print("The volume of the first box is ");
showVolume(box1);
System. out. println("The dimensions of the second box are");
box2.showData();
System. out. print("The volume of the second box is ");
showVolume(box2);
}
public static void showVolume(DebugBox aBox)
{
double vol = aBox. getVolume();
System. out. println(vol);
}
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 19:30
Singing in the rain: this first part of the film shows the early history of motion picture. how accurate do you think the portrayal of the early motion picture industry is? why? is historical accuracy important in films and theater productions? explain.
Answers: 1
question
Computers and Technology, 22.06.2019 21:30
How do you take a green screen out of the video while editing?
Answers: 2
question
Computers and Technology, 22.06.2019 23:20
How can you tell if someone sent you a text message to your email instead of a email
Answers: 1
question
Computers and Technology, 23.06.2019 06:20
What is a point-in-time measurement of system performance?
Answers: 3
You know the right answer?
Public class DebugBox {
private int width;
private int length;
private int height...
Questions
question
Mathematics, 04.05.2021 20:40
question
Mathematics, 04.05.2021 20:40
question
Mathematics, 04.05.2021 20:40
question
English, 04.05.2021 20:40
question
Mathematics, 04.05.2021 20:40
question
Spanish, 04.05.2021 20:40
question
Mathematics, 04.05.2021 20:40
question
Mathematics, 04.05.2021 20:40
question
Mathematics, 04.05.2021 20:40