You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
396 B

#include <bits/stdc++.h>
using namespace std;
int main() {
int L, R, count = 0;
cin >> L >> R;
for (int i = L; i <= R; i++) {
string a = to_string(i); //注意数字转字符串的办法
for (char c : a) { //注意遍历字符串的方法
if (c == '2')
count++;
}
}
cout << count << endl;
return 0;
}