Compare commits
No commits in common. "c84192de0498f4598ae73f8f731d6eb51ea7c918" and "f907d3be3c731eccea59bdd26791879474027629" have entirely different histories.
c84192de04
...
f907d3be3c
Binary file not shown.
Before Width: | Height: | Size: 81 KiB |
@ -15,7 +15,4 @@ Dateien wie Bilder die zur Lösung einer Aufgabe gehören sind in <br><ins>Medie
|
||||
<br>Nicht die gewünschte rekursive Backtracking-Implementierung
|
||||
|
||||
|
||||
- VL 6 Aufg 1 aktuell nur a) - d)
|
||||
|
||||
|
||||
- Keine
|
||||
|
@ -4,13 +4,6 @@ class Angestellter extends Mitarbeiter{
|
||||
|
||||
double monatsGehalt;
|
||||
|
||||
void Angestellter(int persoNR, String name, String vorname, double monatsGehalt){
|
||||
this.personalNummer = persoNR;
|
||||
this.name = name;
|
||||
this.vorname = vorname;
|
||||
this.monatsGehalt = monatsGehalt;
|
||||
}
|
||||
|
||||
void print(){
|
||||
System.out.println(getPersonalNummer());
|
||||
System.out.println(getName());
|
||||
|
@ -4,12 +4,6 @@ class Arbeiter extends Mitarbeiter{
|
||||
|
||||
double stundenSatz;
|
||||
|
||||
Arbeiter(int persoNR, String name, String vorname){
|
||||
this.personalNummer = persoNR;
|
||||
this.name = name;
|
||||
this.vorname = vorname;
|
||||
}
|
||||
|
||||
void print(){
|
||||
System.out.println(getPersonalNummer());
|
||||
System.out.println(getName());
|
||||
|
@ -4,13 +4,6 @@ final class Facharbeiter extends Arbeiter{
|
||||
|
||||
String fachRichtung;
|
||||
|
||||
Facharbeiter(int persoNR, String name, String vorname, String fachRichtung){
|
||||
this.personalNummer = persoNR;
|
||||
this.name = name;
|
||||
this.vorname = vorname;
|
||||
this.fachRichtung = fachRichtung;
|
||||
}
|
||||
|
||||
void print(){
|
||||
System.out.println(getPersonalNummer());
|
||||
System.out.println(getName());
|
||||
|
@ -1,20 +0,0 @@
|
||||
package part6;
|
||||
|
||||
public class Leitender_Angestellter extends Angestellter{
|
||||
int bonus;
|
||||
|
||||
Leitender_Angestellter(int persoNR, String name, String vorname, double monatsgehalt, int bonus){
|
||||
this.personalNummer = persoNR;
|
||||
this.name = name;
|
||||
this.vorname = vorname;
|
||||
this.monatsGehalt = monatsgehalt;
|
||||
this.bonus = bonus;
|
||||
}
|
||||
void print(){
|
||||
System.out.println(getPersonalNummer());
|
||||
System.out.println(getName());
|
||||
System.out.println(getVorname());
|
||||
System.out.println(monatsGehalt);
|
||||
System.out.println(bonus);
|
||||
}
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
package part6;
|
||||
|
||||
public class Manager extends Leitender_Angestellter{
|
||||
|
||||
String wagentyp;
|
||||
String kennzeichen;
|
||||
|
||||
Manager(int persoNR, String name, String vorname, double monatsgehalt, int bonus, String wagentyp, String kennzeichen){
|
||||
this.personalNummer = persoNR;
|
||||
this.name = name;
|
||||
this.vorname = vorname;
|
||||
this.monatsGehalt = monatsgehalt;
|
||||
this.bonus = bonus;
|
||||
this.wagentyp = wagentyp;
|
||||
this.kennzeichen = kennzeichen;
|
||||
}
|
||||
|
||||
void print(){
|
||||
System.out.println(getPersonalNummer());
|
||||
System.out.println(getName());
|
||||
System.out.println(getVorname());
|
||||
System.out.println(monatsGehalt);
|
||||
System.out.println(bonus);
|
||||
System.out.println(wagentyp);
|
||||
System.out.println(kennzeichen);
|
||||
}
|
||||
|
||||
void setWagentyp(String s){wagentyp = s;}
|
||||
void setKennzeichen(String s){kennzeichen = s;}
|
||||
|
||||
String getWagentyp(){return wagentyp;}
|
||||
String getKennzeichen(){return kennzeichen;}
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
package part6;
|
||||
|
||||
public class aufg1 {
|
||||
|
||||
// a) & b) siehe "Angestellten_UML.png" in "/Medien/Bilder & Co/"
|
||||
|
||||
// c)
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user