题目描述:
题目思路:
判断数位上的数即可。
代码详解:
#include<iostream>
using namespace std;
typedef long long ll;
int main(){
int n;
cin>>n;
ll ans=0;
for(int i=1;i<=n;i++){
int x=i;
int flag=0;
while(x){
int t=x%10;
if(2==t||0==t||1==t||9==t){
flag=1;
break;
}
x/=10;
}
if(1==flag) ans+=i;
}
cout<<ans;
return 0;
}