blob: 7309b2cff82821d52a7b99eea26cb8ed2b108b39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <iostream>
#include "sales_item.hpp"
/*
*
* Exercise 1.20
*
*
*/
int main () {
Sales_item item1;
while(std::cin >> item1) {
std::cout << item1 << std::endl;
}
return 0;
}
|