Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created April 9, 2025 17:13
Show Gist options
  • Save thinkphp/7be7fab6e6e31b4fcddddb1d8f625f2a to your computer and use it in GitHub Desktop.
Save thinkphp/7be7fab6e6e31b4fcddddb1d8f625f2a to your computer and use it in GitHub Desktop.
Dreptunghi java class
public class Dreptunghi extends FormaGeometrica {
private double lungime;
private double latime;
public Dreptunghi(String culoare, double lungime, double latime) {
super(culoare);
this.lungime = lungime;
this.latime = latime;
}
@Override
public double calculeazaArea() {
return lungime * latime;
}
@Override
public double calculeazaPerimetru() {
return 2 * (lungime + latime);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment