标签:
2 4 2 5 3
YES NO
#include<stdio.h> main(){ int a,b,n; scanf("%d",&n); while(n--) {scanf("%d%d",&a,&b); if(a%b==0) printf("YES\n"); else printf("NO\n"); } return 0; }
A\B?
原文地址:http://blog.csdn.net/l15738519366/article/details/45226021