[恢]hdu 2075

2011-12-14 05:25:11

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2075

题意:中文,屌爆了,hdu还有那么简单的题。

代码:

# include <stdio.h>


int main ()
{
int n, m ;
scanf ("%d", &n) ;
while (~scanf ("%d%d", &n, &m))
puts (n%m?"NO":"YES") ;

return 0 ;
}



原文地址:https://www.cnblogs.com/lzsz1212/p/2314549.html