记录编号 | 174421 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2010PJ]数字统计 | 最终得分 | 100 | ||
用户昵称 | NVIDIA | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.024 s | ||
提交时间 | 2015-08-01 15:48:57 | 内存使用 | 0.31 MiB | ||
#include <iostream> #include <cstdio> using namespace std; int main() { freopen("twoj.in","r",stdin); freopen("twoj.out","w",stdout); int l, r, ans = 0; cin>>l>>r; for (int i=l;i<=r;++i){ int j=i; while (j>0){ if (j%10==2) ans++; j/=10;} } cout<<ans; }