summaryrefslogtreecommitdiff
path: root/2p41-1p21-v1.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-01 12:11:23 +0200
committerOskar <[email protected]>2024-08-01 12:11:23 +0200
commit0de72ab100011ab54f99f298e936327011ebc706 (patch)
treeb0658b0e5d9b67b214e03177f7d08704038eed14 /2p41-1p21-v1.cpp
parenta450487a18ec72ea3a3815bfaf17b2f701796b6f (diff)
more exercises
Diffstat (limited to '2p41-1p21-v1.cpp')
-rw-r--r--2p41-1p21-v1.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/2p41-1p21-v1.cpp b/2p41-1p21-v1.cpp
new file mode 100644
index 0000000..be6e972
--- /dev/null
+++ b/2p41-1p21-v1.cpp
@@ -0,0 +1,32 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ *
+ * 2.41 - 1.21
+ *
+ *
+ */
+
+struct SalesData {
+ std::string BookNo;
+ unsigned int UnitsSold = 0;
+ double Revenue = 0.0;
+};
+
+int main () {
+
+ SalesData book1;
+ SalesData book2;
+ while(std::cin >> book1.BookNo >> book1.UnitsSold >> book1.Revenue) {
+ std::cin >> book2.BookNo >> book2.UnitsSold >> book2.Revenue;
+ if(book1.BookNo != book2.BookNo) {
+ std::cout << "These books do not have the same ISBN" << std::endl;
+ continue;
+ }
+
+ std::cout << book1.BookNo << " " << book1.UnitsSold + book2.UnitsSold << " " << book1.Revenue + book2.Revenue << std::endl;
+ }
+
+ return 0;
+}