(double a, double b)
| 28 | |
| 29 | class triangle extends area { |
| 30 | triangle(double a, double b) { |
| 31 | super(a, b); |
| 32 | } |
| 33 | double area1() { |
| 34 | System.out.println("Area of triangle = "); |
| 35 | return (0.5*dim1*dim2); |
nothing calls this directly
no outgoing calls
no test coverage detected