summaryrefslogtreecommitdiff
path: root/2p6-2p7-2p8.cpp
blob: adec444f591f6352400157ad9c818b7541b71e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include "sales_item.hpp"

/*
 *
 * 2.6, 2.7, 2.8
 *
 *
 */

int main () {

	int month1 = 9;
	int day1 = 7;
	//int month2 = 09; // Invalid!
	//int day2 = 07;
	std::cout << "month1: " << month1 << " day1: " << day1 << std::endl;
	std::cout << "Who goes with F\145rgus?\012";
	std::cout << "2M\n";
	std::cout << "2\tM\n";
	
	return 0;
}