2011-12-15 02:06:24
地址:http://acm.hdu.edu.cn/showproblem.php?pid=2101
题意:两数和是否是86的倍数。
代码:
# include <stdio.h>
int main ()
{
int a, b ;
while (~scanf ("%d%d", &a, &b))
puts (((a+b)%86) ? "no" : "yes") ;
return 0 ;
}
2011-12-15 02:06:24
地址:http://acm.hdu.edu.cn/showproblem.php?pid=2101
题意:两数和是否是86的倍数。
代码:
# include <stdio.h>
int main ()
{
int a, b ;
while (~scanf ("%d%d", &a, &b))
puts (((a+b)%86) ? "no" : "yes") ;
return 0 ;
}