1.4.18 题目如下 样例输入 1 1样例输出 yes代码样例 #include <iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x<-1 || x>1||y<-1||y>1) { cout<<"no"<<endl; } else { cout<<"yes"<<endl; } return 0; } 成功界面