2 条题解
-
9
cxccxc LV 9 @ 6 年前
-
-15 年前@
- 1
信息
- 难度
- 4
- 分类
- (无)
- 标签
- (无)
- 递交数
- 1423
- 已通过
- 630
- 通过率
- 44%
- 被复制
- 1
- 上传者
#include <iostream>
using namespace std;
int main()
{
char a, b;
int n;
int ans = 0;
cin >> a >> b >> n;
string weihao;
for(int i = 0; i < n; i++)
{
cin >> weihao;
if(weihao[2] == a || weihao[2] == b)
{
ans++;
}
}
cout << ans;
return 0;
}