-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDebugFour3.java
More file actions
25 lines (24 loc) · 807 Bytes
/
DebugFour3.java
File metadata and controls
25 lines (24 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// This class uses a FixDebugBox class to instantiate two Box objects
public class DebugFour3
{
public static void main(String args[])
{
int width = 12,
length = 10,
height = 8;
FixDebugBox box1 = new DebugBox();
FixDebugBox box2 = new DebugBox(width, length, height);
System.out.println("The dimensions of the first box are");
showData();
System.out.print(" The volume of the first box is ");
box1.showVolume();
System.out.println("The dimensions of the second box are");
box2.showData();
System.out.print(" The volume of the second box is ");
box2.showVolume();
}
public static void showVolume(DebugBox aBox)
{
double vol = aBox.getVolume();
System.out.println(vol);
}