试题F:特别数的和
程序员文章站
2022-05-16 09:10:18
...
试题F:特别数的和
题目如上图所示,代码:
#include<bits/stdc++.h>
using namespace std;
int check(int n){
while(n){
int t = n % 10;
n = n / 10;
if(t == 2 || t == 0 || t == 1 || t == 9)
return 1;
}
return 0;
}
int main(){
int n;
int sum = 0;
cin>>n;
for(int i = 1; i <= n; i++){
if(check(i)){
sum += i;
}
}
cout<<sum<<endl;
return 0;
上一篇: 南邮 CTF部分 write up