-
Notifications
You must be signed in to change notification settings - Fork 246
/
7.13.cpp
70 lines (60 loc) · 1.73 KB
/
7.13.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <string>
#include <iostream>
struct Sales_data;
std::istream &read(std::istream &is, Sales_data &item);
struct Sales_data {
Sales_data() = default;
Sales_data(const std::string &no) : bookNo(no) {}
Sales_data(const std::string &no, unsigned us, double price)
: bookNo(no), units_sold(us), revenue(price * us) {}
Sales_data::Sales_data(std::istream &is) {
read(is, *this);
}
std::string isbn() const { return bookNo; }
Sales_data &combine(const Sales_data &);
std::string bookNo;
unsigned units_sold = 0;
double revenue = 0.0;
};
Sales_data &Sales_data::combine(const Sales_data &rhs) {
units_sold += rhs.units_sold;
revenue += rhs.revenue;
return *this;
}
Sales_data add(const Sales_data &lhs, const Sales_data &rhs) {
Sales_data sum = lhs; // Use default copy constructor
sum.combine(rhs);
return sum;
}
std::istream &read(std::istream &is, Sales_data &item) {
double price;
is >> item.bookNo >> item.units_sold >> price;
item.revenue = item.units_sold * price;
return is;
}
std::ostream &print(std::ostream &os, const Sales_data &item) {
os << item.isbn() << " " << item.units_sold << " " << item.revenue;
return os;
}
int main() {
Sales_data total(std::cin);
//if (read(std::cin, total)) {
if (std::cin) {
Sales_data trans(std::cin);
//while (read(std::cin, trans)) {
while (std::cin) {
if (total.isbn() == trans.isbn()) {
total.combine(trans);
} else {
print(std::cout, total) << std::endl;
total = trans; // Use default copy constructor
}
read(std::cin, trans); // Read new transaction
}
print(std::cout, total) << std::endl;
} else {
std::cerr << "No data!" << std::endl;
return -1;
}
return 0;
}