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

Method rectangle

Programs/abstractClass.java:20–22  ·  view source on GitHub ↗
(double a, double b)

Source from the content-addressed store, hash-verified

18
19class 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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected