diff options
author | Oskar <[email protected]> | 2024-08-01 12:11:23 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-01 12:11:23 +0200 |
commit | 0de72ab100011ab54f99f298e936327011ebc706 (patch) | |
tree | b0658b0e5d9b67b214e03177f7d08704038eed14 /2p41-1p21-v2.cpp | |
parent | a450487a18ec72ea3a3815bfaf17b2f701796b6f (diff) |
more exercises
Diffstat (limited to '2p41-1p21-v2.cpp')
-rw-r--r-- | 2p41-1p21-v2.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/2p41-1p21-v2.cpp b/2p41-1p21-v2.cpp new file mode 100644 index 0000000..248a059 --- /dev/null +++ b/2p41-1p21-v2.cpp @@ -0,0 +1,36 @@ +#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; + if(std::cin >> book1.BookNo >> book1.UnitsSold >> book1.Revenue) { + while(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; + } + } else { + std::cout << "Error!" << std::endl; + return -1; + } + + return 0; +} |