A. Bit++水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Bit++水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/282/A
#include<bits/stdc++.h>
using namespace std;
int t;
string s;
int ans;
int main(void)
{
cin>>t;
while(t--)
{
cin>>s;
if(s.find("+")!=-1) ans++;
else ans--;
}
cout<<ans;
return 0;
}
以上是关于A. Bit++水题的主要内容,如果未能解决你的问题,请参考以下文章