You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
272 B
12 lines
272 B
package w5;
|
|
abstract class Shape{
|
|
protected double l;
|
|
protected double h;
|
|
protected double area;
|
|
public Shape(double l,double h){
|
|
this.l=l;
|
|
this.h=h;
|
|
this.area=getArea();
|
|
}
|
|
protected abstract double getArea();
|
|
}
|
|
|