Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
39075 | jiabokai | 数字统计 | C++ | 解答错误 | 0 MS | 244 KB | 316 | 2024-01-30 15:52:38 |
#include<bits/stdc++.h> using namespace std; bool judge(int m){ while(m){ if(m%10==2){ return true; } m/=10; } return false; } int main(){ int l,r,cnt=0; while(cin>>l>>r){ cnt=0; for(int i=l;i<=r;i++){ if(judge(i)){ cnt++; } } cout<<cnt+1; } return 0; }