C++
$\color{gold}{— > 蓝桥杯辅导课题解}$
思路:
模拟
$通过string字符串存储年份,每次根据题目要求判断一下即可$
$时间复杂度:O(1)$
#include <bits/stdc++.h>
using namespace std;
int main() {
int n = 5, cnt = 0;
while (n --) {
string s; cin >> s;
if (s[0] == s[2] && s[1] == s[3] - 1) cnt ++;
}
cout << cnt;
return 0;
}