注意:C语言字符数组必须预留出一个‘\0’的位置。
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
char op[5];
int n;
int ans = 0;
cin >> n;
while(n--) {
cin >> op;
if(op[1] == '+') {
ans += 1;
}
else {
ans -= 1;
}
}
cout << ans << endl;
return 0;
}