summaryrefslogtreecommitdiff
path: root/3.1-v2-2.cpp
blob: 0ac8ac38064b0d06ba1e95c423770e2905f746a2 (plain)
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
#include <iostream>
#include "sales_data.hpp"

/*
 *
 * 2.41 - 1.21
 *
 *
 */
using std::cout;
using std::cin;
using std::endl;
int main () {
	
	SalesData book1;
	SalesData book2;
	if(cin >> book1.BookNo >> book1.UnitsSold >> book1.Revenue) {
		while(cin >> book2.BookNo >> book2.UnitsSold >> book2.Revenue) {
			if(book1.BookNo != book2.BookNo) {
				cout << "These books do not have the same ISBN" << endl;
				continue;
			}
			
			cout << book1.BookNo << " " << book1.UnitsSold + book2.UnitsSold << " " << book1.Revenue + book2.Revenue << endl;
		}
	} else {
		cout << "Error!" << endl;
		return -1;
	}
	
	return 0;
}