-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbit++.cpp
More file actions
41 lines (37 loc) · 560 Bytes
/
Copy pathbit++.cpp
File metadata and controls
41 lines (37 loc) · 560 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
#include <iostream>
using namespace std;
int main()
{
int N;
string a[150];
cin >> N;
int i = 0;
while( i<N )
{
cin >> a[i];
i++;
}
int o = 0, n=0;
while( n<i )
{
if(a[n] == "X++")
{
o = o+1;
}
else if(a[n] == "++X")
{
o = o+1;
}
else if(a[n] == "--X")
{
o = o-1;
}
else if(a[n] == "X--")
{
o = o-1;
}
n++;
}
cout << o << endl;
return 0;
}