master
selim 2024-03-23 03:22:33 +01:00
parent 1e7378a1ed
commit 13defb4014
4 changed files with 15 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public class BlackJackSpiel {
if (spieler.isBlackJack()) {
System.out.println("BlackJack: Ihre Hand: "+spieler);
System.out.println("BlackJack: Sie haben einen BlackJack!");
break;
} else {
while(spieler.getPunkte()<22) {
int punkte = spieler.getPunkte();
@ -30,6 +30,7 @@ public class BlackJackSpiel {
break;
}
}
System.out.println("BlackJack: Ihre Hand: "+spieler);
System.out.println("BlackJack: Ihre Endpunktzahl von diesem Spiel beträgt: "+spieler.getPunkte());
System.out.println("BlackJack: Damit haben Sie 21 überschritten und verloren.");
}

View File

@ -15,6 +15,7 @@ public class Hand {
String hand = "";
for (int i = 0; i<this.hand.size(); i++){
hand += this.hand.get(i).toString();
hand += " ";
}
return hand;
}

View File

@ -10,6 +10,9 @@ public class Karte {
Karte(String farbe, String karte){
this.farbe=farbe;
this.karte=karte;
}
public String toString(){

View File

@ -50,4 +50,13 @@ public class Kartenstapel {
public int getZahlÜbrigerKarten(){
return kartenstapel.size();
}
public String toString(){
String ergebnis = "";
for(int i=0; i<kartenstapel.size(); i++){
ergebnis += kartenstapel.get(i);
ergebnis += " ";
}
return ergebnis;
}
}