-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5613.cpp
More file actions
69 lines (66 loc) · 997 Bytes
/
5613.cpp
File metadata and controls
69 lines (66 loc) · 997 Bytes
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
// 5613. 계산기 프로그램
// 2019.09.13
// 구현
#include<iostream>
#include<stack>
#include<string>
#include<vector>
using namespace std;
int main()
{
vector<string> v;
while (1)
{
string s;
cin >> s;
if (s == "=")
{
v.push_back("=");
break;
}
v.push_back(s);
}
stack<int> st;
for (int i = 0; i < v.size(); i++)
{
//cout << v[i] << endl;
if (v[i] == "+")
{
int first = st.top();
int second = stoi(v[i + 1]);
st.push(first + second);
i++;
}
else if (v[i] == "-")
{
int first = st.top();
int second = stoi(v[i + 1]);
st.push(first - second);
i++;
}
else if (v[i] == "*")
{
int first = st.top();
int second = stoi(v[i + 1]);
st.push(first * second);
i++;
}
else if (v[i] == "/")
{
int first = st.top();
int second = stoi(v[i + 1]);
st.push(first / second);
i++;
}
else if (v[i] == "=")
{
cout << st.top() << endl;
break;
}
else
{
st.push(stoi(v[i]));
}
}
return 0;
}