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
GIROKONTO.java Normal file
View File

@@ -0,0 +1,22 @@
/**
* Beschreiben Sie hier die Klasse GIROKONTO.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
public class GIROKONTO extends KONTO
{
KONTO meinKonto;
/**
* Konstruktor für Objekte der Klasse GIROKONTO
*/
public GIROKONTO(String startIBAN)
{
super(startIBAN);
meinKonto = new KONTO("asdk,h<SDF");
meinKonto.kontostand = 9000000;
}
}