请统计某个给定范围 [ L , R ] [L, R] [L,R] 的所有整数中,数字 2 2 2 出现的次数。
比如给定范围 [ 2 , 22 ] [2, 22] [2,22],数字 2 2 2 在数 2 2 2 中出现了 1 1 1 次,在数 12 12 12 中出现 1 1 1 次,在数 20 20 20 中出现 1 1 1 次,在数 21 21 21 中出现 1 1 1 次,在数 22 22 22 中出现 2 2 2 次,所以数字 2 2 2 在该范围内一共出现了 6 6 6 次。
2 2 2 个正整数 L L L 和 R R R,之间用一个空格隔开。
数字 2 2 2 出现的次数。
2 22
6
2 100
20
1 ≤ L ≤ R ≤ 100000 1 ≤ L ≤R≤ 100000 1≤L≤R≤100000。
NOIP2010 普及组 第一题
#include<iostream>
using namespace std;
int l, r;
int ans;
int main() {
cin >> l >> r;
for (; l <= r; l++) {
if (l % 10 == 2) ans++;
if (l % 100 / 10 == 2) ans++;
if (l % 1000 / 100 == 2) ans++;
if (l % 10000 / 1000 == 2)ans++;
if (l % 100000 / 10000 == 2)ans++;
if (l % 1000000 / 100000 == 2)ans++;
}
cout << ans << endl;
}
#include<iostream>
using namespace std;
int l, r;
int ans;
int main() {
cin >> l >> r;
for (int i = l; i <= r; i++) {
int j = i;
while (j) {
if (j % 10 == 2) ans++;
j /= 10;
}
}
cout << ans << endl;
}