奖券数目
题目描述
有些人很迷信数字,比如带“4”的数字,认为和“死”谐音,就觉得不吉利。
虽然这些说法纯属无稽之谈,但有时还要迎合大众的需求。某抽奖活动的奖券号码是5位数(10000-99999),要求其中不要出现带“4”的号码,主办单位请你计算一下,如果任何两张奖券不重号,最多可发出奖券多少张。
请提交该数字(一个整数),不要写任何多余的内容或说明性文字。
代码
#include <stdio.h>
int main(int argc, const char *argv[])
{
int count = 0, temp;
int result = 0, i;
for (i = 10000; i <= 99999; i++)
{
temp = i;
while (temp)
{
result = temp % 10; //*求尾数
if (result == 4)
{
count++;
break;
}
temp = temp / 10;
}
}
printf("奖券的数量为:%d\n", 99999 - 10000 - count + 1);
return 0;
}