[恢]hdu 1197
2011-12-20 18:23:34
地址:http://acm.hdu.edu.cn/showproblem.php?pid=1197
题意:输出所有符合条件的数字。条件就是4位数,用10进制表示的各个数码的和,等于16进制各数码的和,同时还等于12进制的。
代码:
# include <stdio.h>
int test(int n, int b)
{
int sum = 0 ;
while (n)
{
sum += n%b ;
n/= b ;
}
return sum ;
}
int main ()
{
int i ;
for (i = 2992 ; i <= 9929 ; i++)
{
if (test(i, 10) == test(i,12) && test(i,10) == test(i,16))
printf ("%d\n", i) ;
}
return 0 ;
}