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(); }