mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 14:11:38 +00:00
[Init] Solved solutions
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int n, x = 0;
|
||||
cin >> n;
|
||||
while (n--)
|
||||
{
|
||||
string s;
|
||||
cin >> s;
|
||||
if (s.find("++") != -1)
|
||||
{
|
||||
x++;
|
||||
}
|
||||
if (s.find("--") != -1)
|
||||
{
|
||||
x--;
|
||||
}
|
||||
}
|
||||
cout << x << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user