This commit is contained in:
Mykola Fesenko
2025-07-29 08:08:23 +02:00
commit 899a05907b
355 changed files with 11002 additions and 0 deletions

20
11/Sparkonto.java Normal file
View File

@@ -0,0 +1,20 @@
/**
*
* Beschreibung
*
* @version 1.0 vom 06.05.2025
* @author
*/
public class Sparkonto extends Konto {
// Anfang Attribute
// Ende Attribute
public Sparkonto(int kontonr, double kontostand) {
super(kontonr,kontostand);
}
// Anfang Methoden
// Ende Methoden
} // end of Sparkonto