Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40317 lnx 数字统计 C++ 通过 0 MS 244 KB 235 2024-02-09 15:25:06

Tests(1/1):


#include<iostream> using namespace std; int main() { int l,r,m=0; cin>>l>>r; for(int i=l;i<=r;i++) { //cout<<i<<'\n'; int j=i; while(j>0){ if(j%10==2) m++; j=(int)(j/10); } } cout<<m; return 0; }


测评信息: