看看这场图片

怎么回事??
代码:
#include<bits/stdc++.h>
using namespace std;
int x1,x2,y1,y2,x,y,t;
int main(){
cin>>t;
while(t--){
cin>>x1>>y1>>x2>>y2;
x=x1-x2,y=y1-y2;
if(x<0) x=-x;
if(y<0) y=-y;
if(x<=1&&y<=1) cout<<"no\n";
else cout<<"yes\n";
}
return 0;
}
你们可以在本地DEV C++上运行,结果是编译成功,可洛谷却显示着编译失败
求助管理员,建议重新配置编译器
@chen_zhe