CodeFoeces-1238A

题目

原题链接:A. Prime Subtraction

题意

大意为问所给x和y的差是否为任意素数的倍数。

代码

#include
int main(){
    int n;
    long long x,y;
    scanf("%d",&n);
    while(n--){
        scanf("%lld%lld",&x,&y);
        if(x-y == 1){
            printf("NO\n"); 
        }else{
            printf("YES\n");    
        }
    } 
    return 0;
}

你可能感兴趣的:(CodeFoeces-1238A)