/home/sjenks/NetBeansProjects/CS1/src/shapes/TheRoom.java |
1
2
3
4
5
6 package shapes;
7
8
9
10 @author
11
12 public class TheRoom {
13
14
15 @param args
16
17 public static void main(String[] args) {
18 double heightRoom = 9.0;
19 double widthRoom = 14.0;
20 double lengthRoom = 21.0;
21 SRectangle face = new SRectangle(widthRoom,lengthRoom);
22 double heightKey = 9.0;
23 double faceDiagonal = face.diagonal();
24 double widthKey = faceDiagonal;
25 SRectangle keyCurtain = new SRectangle (heightKey, widthKey);
26 double keyDistance = keyCurtain.diagonal();
27 System.out.println("keyDistance = " + keyDistance);
28
29 }
30
31 }
32