From 0778e02ed022a9a1019194436b27d83d200dc94d Mon Sep 17 00:00:00 2001 From: Samuel Oberhofer Date: Thu, 26 May 2022 10:01:43 +0200 Subject: [PATCH] better test data --- Uebung 1/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Uebung 1/main.cpp b/Uebung 1/main.cpp index fe7fcc0..4cb0304 100644 --- a/Uebung 1/main.cpp +++ b/Uebung 1/main.cpp @@ -6,18 +6,18 @@ int main() { Sortiment sortiment; - sortiment.addWare(new Ware("ware1", 2, 13.5, 10, 20)); - sortiment.addWare(new Ware("ware1", 7, 14.6, 15, 20)); + sortiment.addWare(new Ware("ware1", 1, 13.5, 10, 20)); + sortiment.addWare(new Ware("ware1", 4, 14.6, 15, 20)); sortiment.addWare(new Ware("ware1", 5, 2.1, 13, 10)); - sortiment.addWare(new Ware("ware1", 2, 6.5, 10, 20)); + sortiment.addWare(new Ware("ware1", 6, 6.5, 10, 20)); sortiment.addWare(new Ware("ware1", 7, 22.6, 15, 20)); sortiment.addWare(new Ware("ware1", 5, 15.1, 13, 10)); - sortiment.addWare(new Ware("ware1", 2, 13.5, 10, 20)); - sortiment.addWare(new Ware("ware1", 7, 13.6, 15, 20)); - sortiment.addWare(new Ware("ware1", 5, 13.1, 13, 10)); + sortiment.addWare(new Ware("ware1", 8, 13.5, 10, 20)); + sortiment.addWare(new Ware("ware1", 9, 13.6, 15, 20)); + sortiment.addWare(new Ware("ware1", 2, 13.1, 13, 10)); sortiment.addWare(new Ware("ware1", 5, 13.1, 13, 10)); - sortiment.sort(4); + sortiment.sort(1); for (int i = 0; i < 10; i++) { std::cout << *(sortiment.waren[i]) << std::endl;