Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
37636 | jiabokai | 数字统计 | C++ | 解答错误 | 0 MS | 252 KB | 283 | 2024-01-22 14:48:54 |
#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; cin>>l>>r; for(int i=l;i<=r;i++){ if(judge(i)){ cnt++; } } cout<<cnt; return 0; }