题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2075
这题说实话有点水,就是判断能不能整除。用了C++完成题目。
#include<iostream>
using namespace std;
int main()
{
int n;
int a,b;
cin>>n;
while(n--)
{
cin>>a>>b;
if(a%b==0)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
return 0;
}
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2075
这题说实话有点水,就是判断能不能整除。用了C++完成题目。
#include<iostream>
using namespace std;
int main()
{
int n;
int a,b;
cin>>n;
while(n--)
{
cin>>a>>b;
if(a%b==0)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
return 0;
}