-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path08-calc.cpp
55 lines (51 loc) · 1.11 KB
/
08-calc.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
// 08-calc.cpp : read from a file and perform calculations
#include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
double calc(char op, double x, double y) {
double r{};
switch (op) {
case '+':
r = x + y;
break;
case '-':
r = x - y;
break;
case '*':
r = x * y;
break;
case '/':
if (y) {
r = x / y;
}
else {
cerr << "Error: divide by zero.\n";
}
break;
case '^':
r = pow(x, y);
break;
default:
cerr << "Error: invalid op.\n";
}
return r;
}
int main(int argc, const char *argv[]) {
if (argc != 2) {
cerr << "Syntax: " << argv[0] << " <input file name>\n";
return 1;
}
ifstream infile{argv[1]};
while (!infile.eof()) {
double x, y;
char op;
infile >> x >> op >> y;
if (infile.fail() || infile.bad()) {
cerr << "Error in input.\n";
break;
}
auto r = calc(op, x, y);
cout << x << ' ' << op << ' ' << y << " = " << r << '\n';
}
}