aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/lab2/calc.cpp
blob: ebe95f4c442d08b73fe330d4f4330b5d9b6ef5ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
using namespace std;

int main () {
  int a,b;
  char op;
  cout << "Enter an equation: ";
  cin >> a >> op >> b;
  cout << a << op << b << " = " <<  << endl;
}