Testat Push rückgängig gemacht

master
Nicholas H. 2024-10-22 14:09:44 +02:00
parent 6116b4b21a
commit 2c19cbe74a
2 changed files with 1 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class ShopVerwaltung {
if (produkt != null && warenkorb.getProduktanzahl().containsKey(produkt)) { if (produkt != null && warenkorb.getProduktanzahl().containsKey(produkt)) {
System.out.println("Geben Sie die neue Anzahl ein:"); System.out.println("Geben Sie die neue Anzahl ein:");
int neueAnzahl = scanner.nextInt(); int neueAnzahl = scanner.nextInt();
if (neueAnzahl < 2) { if (neueAnzahl < 1) {
System.out.println("Anzahl darf nicht kleiner als 1 sein"); System.out.println("Anzahl darf nicht kleiner als 1 sein");
return; return;
} }

View File

@ -20,7 +20,6 @@ public class Warenkorb {
double gewicht = produkt.getGewicht() * anzahl; double gewicht = produkt.getGewicht() * anzahl;
finalesGewicht += gewicht; finalesGewicht += gewicht;
} }
finalesGewicht = Math.round(finalesGewicht * 100.0) / 100.0;
return finalesGewicht; return finalesGewicht;
} }