比赛 |
2010年noip |
评测结果 |
AAAAAAAAAA |
题目名称 |
数字统计 |
最终得分 |
100 |
用户昵称 |
做个人吧 |
运行时间 |
0.004 s |
代码语言 |
C++ |
内存使用 |
3.16 MiB |
提交时间 |
2018-05-17 19:07:26 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <iomanip>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <vector>
using namespace std;
int total=0;
void count(int n){
if(n%10==2){
total++;
}
if(n/10!=0){
count(n/10);
}else{
return;
}
}
int main(){
freopen("twoj.in","r",stdin);
freopen("twoj.out","w",stdout);
int l, r;
cin>>l>>r;
for(int i=l;i<=r;i++){
count(i);
}
cout<<total;
return 0;
}