blob: 0342e28f9a60a6c3b1c26a99f07614241cf3c843 (
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(int argc, char *argv[])
{
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;
}
|