-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7.03.cpp
More file actions
28 lines (27 loc) · 896 Bytes
/
7.03.cpp
File metadata and controls
28 lines (27 loc) · 896 Bytes
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
#include <string>
#include <iostream>
#include "Sales_data.h"
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()) {
total.combine(trans);
} else {
std::cout << total.isbn() << " " << total.units_sold << " " << total.revenue << " " << total.revenue / total.units_sold << std::endl;
total.bookNo = trans.bookNo;
total.units_sold = trans.units_sold;
total.revenue = trans.revenue;
}
}
std::cout << total.isbn() << " " << total.units_sold << " " << total.revenue << " " << total.revenue / total.units_sold << std::endl;
} else {
std::cerr << "No data?!" << std::endl;
return -1;
}
return 0;
}