commit a2a2ab979b50ef769a79eb802373e2690674cb78 Author: 3013379 <3013379@stud.hs-mannheim.de> Date: Mon Oct 21 22:53:45 2024 +0200 Warenkorb überarbeitet und vervollständigt diff --git a/src/Warenkorb.java b/src/Warenkorb.java new file mode 100644 index 0000000..b41e383 --- /dev/null +++ b/src/Warenkorb.java @@ -0,0 +1,48 @@ +import java.util.HashMap; + +public class Warenkorb { + private final HashMap produktanzahl = new HashMap<>(); + + public HashMap getProduktanzahl() { + return produktanzahl; + } + + public void produktHinzufuegen(Produkt produkt, int anzahl) { + produktanzahl.put(produkt, anzahl); + } + + public double gewichtBerechnen() { + double finalesGewicht = 0; + for (Produkt produkt : produktanzahl.keySet()) { + int anzahl = produktanzahl.get(produkt); + double gewicht = produkt.getGewicht() * anzahl; + finalesGewicht += gewicht; + } + finalesGewicht = Math.round(finalesGewicht * 100.0) / 100.0; + return finalesGewicht; + } + + + public double preisBerechnen() { + double finalerPreis = 0; + for (Produkt produkt : produktanzahl.keySet()) { + int anzahl = produktanzahl.get(produkt); + double preis = produkt.getPreis() * anzahl; + finalerPreis += preis; + + } + finalerPreis = Math.round(finalerPreis * 100.0) / 100.0; + return finalerPreis; + } + + public double versandkostenBerechnen() { + double finalesGewicht = gewichtBerechnen(); + if (finalesGewicht < 1000) { + return 5.0; + } else if (finalesGewicht < 2500) { + return 8.0; + } else { + return 10; + } + } +} \ No newline at end of file