17 lines
333 B
Plaintext
17 lines
333 B
Plaintext
|
public class Auto {
|
||
|
|
||
|
tachoStand;
|
||
|
|
||
|
public void fahren(distanz) {
|
||
|
tachoStand = tachoStand + distanz;
|
||
|
}
|
||
|
|
||
|
public void abschleppen(auto, distanz) {
|
||
|
auto.fahren(distanz);
|
||
|
}
|
||
|
public static void main(String[] args) {
|
||
|
meinPKW.fahren(100);
|
||
|
bmw.fahren(100);
|
||
|
bmw.fahren(100);
|
||
|
}
|
||
|
}
|