2075

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2075

这题说实话有点水,就是判断能不能整除。用了C++完成题目。

#include

using namespace std;

int main()

{

int n;

int a,b;

cin>>n;

while(n--)

{

        cin>>a>>b;

        if(a%b==0)

cout<<"YES"<

else

cout<<"NO"<

}

return 0;

}


你可能感兴趣的:(2075)