-
Notifications
You must be signed in to change notification settings - Fork 246
/
7.3.cpp
51 lines (46 loc) · 1.39 KB
/
7.3.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
#include <string>
#include <iostream>
struct Sales_data {
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;
}
int main() {
Sales_data total;
double price;
if (std::cin >> total.bookNo >> total.units_sold >> price) {
total.revenue = total.units_sold * price;
Sales_data trans;
while (std::cin >> trans.bookNo >> trans.units_sold >> price) {
trans.revenue = trans.units_sold * price;
if (total.isbn() == trans.isbn()) {
//if (total.bookNo == trans.bookNo) {
total.combine(trans);
//total.units_sold += trans.units_sold;
//total.revenue += trans.revenue;
} else {
std::cout << total.bookNo << " "
<< total.units_sold << " "
<< total.revenue << std::endl;
total = trans; // Use default copy constructor
//total.bookNo = trans.bookNo;
//total.units_sold = trans.units_sold;
//total.revenue = trans.revenue;
}
}
std::cout << total.bookNo << " "
<< total.units_sold << " "
<< total.revenue << std::endl;
} else {
std::cerr << "No data!" << std::endl;
return -1;
}
return 0;
}