Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
24302 老方 数字统计 C++ 通过 0 MS 248 KB 232 2023-08-10 13:00:22

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int L,R,sum=0; cin>>L>>R; for(int i=L;i<=R;i++) { int j=i; while(j) { if(j%10==2){ sum+=1; } j/=10; } } cout<<sum; return 0; }


测评信息: