Skip to content

Instantly share code, notes, and snippets.

@MohamedTaha98
Last active July 26, 2017 19:59
Show Gist options
  • Save MohamedTaha98/4e235cc67cce75f89f347777432db35c to your computer and use it in GitHub Desktop.
Save MohamedTaha98/4e235cc67cce75f89f347777432db35c to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
long long x, y;
char op;
for (int i = 0; i < n; i++) {
cin >> x >> op;
while (op != '=') {
cin >> y;
switch (op) {
case '+':
x += y;
break;
case '-':
x -= y;
break;
case '*':
x *= y;
break;
case '/':
x /= y;
break;
default:
break;
}
cin >> op;
}
cout << x << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment