Initial sharing of project

This commit is contained in:
Mr.B.
2023-05-01 14:08:12 +02:00
commit 3d5aad915c
5 changed files with 128 additions and 0 deletions

22
SPARKONTO.java Normal file
View File

@@ -0,0 +1,22 @@
/**
* Beschreiben Sie hier die Klasse SPARKONTO.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
public class SPARKONTO extends KONTO
{
// Instanzvariablen - ersetzen Sie das folgende Beispiel mit Ihren Variablen
/**
* Konstruktor für Objekte der Klasse SPARKONTO
*/
public SPARKONTO(String startIBAN)
{
super(startIBAN);
}
}