package VL06.Aufgabe01; class Angestellter extends Mitarbeiter { protected double monatsGehalt; Angestellter(int personalNummer, String name, String vorname, double monatsGehalt) { super(personalNummer, name, vorname); this.monatsGehalt = monatsGehalt; } void print() { System.out.printf("\n%s, %s (%d):\n", this.getName(), this.getVorname(), this.getPersonalNummer()); System.out.printf(" Monatsgehalt: %.2f Euro\n", this.monatsGehalt); } }