-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.cpp
239 lines (219 loc) · 4.89 KB
/
calculator.cpp
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#include <iostream>
#include <stdexcept>
#include <string>
#include <unordered_map>
// Token stuff
struct token
{
char kind; // what kind of token
double value; // for numbers: a value
// constructors
token(char ch)
: kind(ch)
, value(0)
{
}
token(char ch, double val)
: kind(ch)
, value(val)
{
}
};
class token_stream
{
bool full; // is there a token in the buffer?
token buffer; // here is where we keep a Token put back using putback()
public:
token get(); // get a token
void putback(token); // put a token back into the token_stream
token_stream() : full(false), buffer(0) {}
};
// single global instance of the token_stream
token_stream ts;
void token_stream::putback(token t)
{
if (full)
throw std::runtime_error("putback() into a full buffer");
buffer = t;
full = true;
}
token token_stream::get() // read a token from the token_stream
{
if (full)
{
full = false;
return buffer;
}
char ch;
std::cin >> ch;
switch (ch)
{
case '(':
case ')':
case ';':
case 'q':
case '+':
case '-':
case '*':
case '/':
case '%':
return token(ch);
case '.':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
std::cin.putback(ch);
double val;
std::cin >> val;
return token('8', val);
}
default:
throw std::runtime_error("Bad token");
}
}
// declaration so that primary() can call expression()
double expression();
double primary() // Number or ‘(‘ Expression ‘)’
{
token t = ts.get();
switch (t.kind)
{
case '(': // handle ‘(’expression ‘)’
{
double d = expression();
t = ts.get();
if (t.kind != ')')
throw std::runtime_error("')' expected");
return d;
}
case '8': // we use ‘8’ to represent the “kind” of a number
return t.value; // return the number’s value
case '-':
return -primary(); // handle negative numbers
default:
throw std::runtime_error("primary expected");
}
}
// exactly like expression(), but for * and / and %
double term()
{
double left = primary(); // get the Primary
while (true)
{
token t = ts.get(); // get the next Token ...
switch (t.kind)
{
case '*':
left *= primary();
break;
case '/':
{
double d = primary();
if (d == 0)
throw std::runtime_error("divide by zero");
left /= d;
break;
}
case '%':
{
double d = primary();
if (d == 0)
throw std::runtime_error("divide by zero");
left = fmod(left, d); // calculate remainder using fmod function
break;
}
default:
ts.putback(t); // put back the unused token
return left; // return the value
}
}
}
// read and evaluate: 1 1+2.5 1+2+3.14 etc.
// return the sum (or difference)
double expression()
{
double left = term(); // get the Term
while (true)
{
token t = ts.get(); // get the next token…
switch (t.kind) // ... and do the right thing with it
{
case '+':
left += term();
break;
case '-':
left -= term();
break;
default:
ts.putback(t); // put back the unused token
return left; // return the value of the expression
}
}
}
std::unordered_map<std::string, double> variables; // map to store variables and their values
double get_value(std::string s)
{
if (variables.find(s) != variables.end())
return variables[s];
else
throw std::runtime_error("Undefined variable: " + s);
}
void set_value(std::string s, double d)
{
variables[s] = d;
}
double statement()
{
token t = ts.get();
if (t.kind == '8') // number
{
token var = ts.get(); // variable name
if (var.kind != '=')
throw std::runtime_error("= expected after number");
double d = expression();
set_value(std::string(1, t.kind), d); // store the value in the variable
return d;
}
else if (t.kind == 'q') // quit
{
exit(0);
}
else if (t.kind == ';') // ignore new lines
{
return 0;
}
else
{
ts.putback(t);
return expression();
}
}
int main()
try
{
while (std::cin)
{
std::cout << ">> ";
statement();
std::cout << '\n';
}
return 0;
}
catch (std::runtime_error &e)
{
std::cerr << e.what() << std::endl;
return 1;
}
catch (...)
{
std::cerr << "exception \n";
return 2;
}