282A Bit++

A. Bit++


Solution in c++
#include<bits/stdc++.h>
#include<string.h>
#include<stdio.h>
#include<math.h>
using namespace std;
int main(){
    int n, x(0);
    cin >> n;
    string s;
    while (n--) {
        cin >> s;
        if (s[1] == '+') {
          ++x;
        }
        else
        {
            --x;
        }
    }
    cout << x << endl;
    return 0;
}

Post a Comment

0 Comments