MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / area

Method area

Programs/abstractClass.java:12–15  ·  view source on GitHub ↗
(double x, double y)

Source from the content-addressed store, hash-verified

10abstract class area {
11 double dim1, dim2;
12 public area(double x, double y) {
13 dim1 = x;
14 dim2 = y;
15 }
16 abstract double area1();
17}
18

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected