Hallo ich habe zur übung einen quellcode erstellt, aber komme nicht drauf wie ich bei der plausibilitätsprüfung die werte der jeweilige attribute als System.out.println übergeben kann.
das ist mein quellcode
Es soll so ausehen
Die Auszahlung ist nicht Möglich.
Ihr kontostand: 2000
Ihr kreditlimit: 5000
Auszahlungsbetrag: 5000
die werte sind die eingegeben variablen.
das ist mein quellcode
Code:
public class Konto
{
String kontoNummer;
String kontoInhaber;
double kontoStand;
double kreditLimit;
Konto()
{
kontoStand=2000;
kreditLimit=5000;
}
void setkontoNummer(String pnummer)
{
this.kontoNummer=pnummer;
}
void setkontoInhaber(String pInhaber)
{
this.kontoInhaber=pInhaber;
}
void setkreditLimit(double pLimit)
{
this.kreditLimit=pLimit;
}
String getkontoNummer()
{
return this.kontoNummer;
}
String getkontoInhaber()
{
return this.kontoInhaber;
}
double getkontoStand()
{
return this.kontoStand;
}
double getkreditLimit()
{
return this.kreditLimit;
}
void einzahlen(double einzahlen)
{
kontoStand=kontoStand+einzahlen;
}
void abheben(double abheben)
{
if ((kontoStand+kreditLimit)>abheben)
{kontoStand=kontoStand-abheben;}
else
{System.out.println("Die Auszahlnung ist nicht möglich");
System.out.println("Ihr kontostand :");
System.out.println("Ihr kreditlimit :");
System.out.println("Auszahlungsbetrag :");
}
}
}
Es soll so ausehen
Die Auszahlung ist nicht Möglich.
Ihr kontostand: 2000
Ihr kreditlimit: 5000
Auszahlungsbetrag: 5000
die werte sind die eingegeben variablen.