2 条题解
-
0武子涵@石湖中学 (武子涵) LV 10 @ 2021-03-13 13:47:25
#include <iostream>
using namespace std;
int main()
{
int a,b,k;
cin>>a>>b>>k;
int cnt=0;
for(int x=a;x<=b;x++)
{
int xx=x;
while(xx>0)
{
if(xx%10==k)
cnt++;
xx=xx/10;
}
}
cout<<cnt<<endl;
return 0;
} -
-22021-02-13 16:42:31@
#include <iostream> using namespace std; int main() { int a,b,k; cin>>a>>b>>k; int cnt=0; for(int x=a;x<=b;x++) { int xx=x; while(xx>0) { if(xx%10==k) cnt++; xx=xx/10; } } cout<<cnt<<endl; return 0; }
- 1
信息
- ID
- 1211
- 难度
- 3
- 分类
- (无)
- 标签
- 递交数
- 217
- 已通过
- 106
- 通过率
- 49%
- 被复制
- 10
- 上传者