aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: d12119e655d4c758c9102aa5d2dcea60b01e0e24 (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
#include <iostream>
#include <limits>
#include "parser.h"

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

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

	return 0;
}