aboutsummaryrefslogtreecommitdiff
path: root/main.cc
blob: c03cce214011a07028fdb6740d0ecf28d71cd1cd (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
#include <iostream>
#include <limits>

#include "src/parser.h"

int main()
{
	std::string inputTerm;
	
	std::cin >> inputTerm; // Example: 2.5*(2+3-(3/2+1))
	
	SimpleParser::Parser parser;
	
	try {
		typedef std::numeric_limits<double> dbl;
		std::cout.precision(dbl::digits10);

		std::cout << parser.calculate(inputTerm) << std::endl;
	}
	catch ( std::exception &e )
	{
		std::cerr << e.what() << std::endl;
		return 1;
	}

	return 0;
}