文章
3
粉丝
328
获赞
4
访问
26.7k
#include<bits/stdc++.h>
using namespace std;
int main()
{
/*由于本题限定界限范围在1≤L≤R≤100000,所以不会超时*/
string s="";//定义空字符串
int count=0;//计数结果
int L,R;
cin>>L>>R;
for(int i=L;i<=R;i++)
{
s+=to_string(i);//将数字转为字符串
}
for(int i=0;i<s.size();i++)//遍历字符串,计算结果
{
if(s[i]=='2')
count++;
}
cout<<count;
return 0;
}
登录后发布评论
暂无评论,来抢沙发