(double a, double b)
| 18 | |
| 19 | class rectangle extends area { |
| 20 | rectangle(double a, double b) { |
| 21 | super(a, b); |
| 22 | } |
| 23 | double area1() { |
| 24 | System.out.println("Area of rectangle = "); |
| 25 | return dim1*dim2; |
nothing calls this directly
no outgoing calls
no test coverage detected