summaryrefslogtreecommitdiff
path: root/3p1-1p10.cpp
blob: 79a1396e1ecc776ed7f08a46ac1ec30daf3ed311 (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"

/*
 *
 * 3.1, 1.10
 *
 *
 */

using std::cout;
using std::cin;
using std::endl;
int main () {

	int i = 10;
	while(i >= 0) {
		cout << i << endl;
		i--;
	}

	return 0;
}