Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
47260 zouqinghua 数字统计 C++ 通过 1 MS 260 KB 398 2024-05-12 21:13:45

Tests(1/1):


#include<bits/stdc++.h> int main() { int L,R; //定义区间 int i,count=0; scanf("%d %d",&L,&R); for(i=L;i<=R;i++) { int k=i; while(k) //对数字的每一位进行分析 { int temp=k%10; if(temp==2) count++; k/=10; } } printf("%d",count); return 0; }


测评信息: