public class Alkohol extends Getraenke{
    private final double alkoholgehalt;
    public Alkohol(String name, String hersteller, double preis, String herkunftsland, int ml, double alkoholgehalt) {
        super(name, hersteller, preis, herkunftsland, ml);
        this.alkoholgehalt = alkoholgehalt;
    }

    @Override
    public String toString() {
        return super.toString() + ", Alkoholgehalt:" + alkoholgehalt + "%";
    }
}
