特别数的和
问题描述
小明对数位中含有 2、0、1、9 的数字很感兴趣(不包括前导 0),
在 1 到 40 中这样的数包括 1、2、9、10 至 32、39 和 40,共 28 个,他们的和是 574。
请问,在 1 到 n 中,所有这样的数的和是多少?
输入格式
输入一行包含两个整数 n。
输出格式
输出一行,包含一个整数,表示满足条件的数的和。
代码
#include <stdio.h>
#include <stdbool.h>
bool check(int x)
{
while(x)
{
int t = x % 10;
if (t == 2 || t == 0 || t == 1 || t == 9)
return true;
x /= 10;
}
return false;
}
int main()
{
int n = 0;
scanf("%d",&n);
int ret = 0;
for (int i = 1;i <= n;i++)
if (check(i))
ret += i;
printf("What is the sum of all numbers?\n%d",ret);
return 0;
}