summaryrefslogtreecommitdiff
path: root/3p15.cpp
blob: 27a648dff2476dc1e61a742c55b679c49bb54c8f (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
33
#include <iostream>
#include <vector>
#include "sales_data.hpp"
#include "sales_item.hpp"

/*
 *
 * 3.15
 *
 * Not completely according to instructions but thats okay. I still learned creating this.
 */

using std::string;
using std::cout;
using std::cin;
using std::cerr;
using std::clog;
using std::endl;
using std::vector;
int main () {

    string phrase;
	vector<string> vp;
	while(getline(cin, phrase)) {
		vp.push_back(phrase);
	}

	for(auto vpi : vp) {
		cout << vpi << endl;
	}
	
	return 0;
}