文章
15
粉丝
68
获赞
0
访问
8.0k
#include <bits/stdc++.h> using namespace std; int main(){ int l,r; while(cin>>l>>r){ int ans=0; for(int i=l;i<=r;i++){ string s=to_string(i); for(int j=0;j<s.size();j++){ if(s[j]=='2')ans++; } } cout<<ans<<endl; } return 0; }
登录后发布评论
暂无评论,来抢沙发