abstract class Form { protected String farge; public Form(String farge) { this.farge = farge; } abstract public double areal(); }