分支语句 + 初中数学(平面直角坐标系)
2023-07-30 10:03:31
发布于:浙江
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y;
cin>>x>>y;
if(x==1 and y==-1) cout<<"yes";
else if(x==1 and y==1) cout<<"yes";
else if(x==-1 and y==-1) cout<<"yes";
else if(x==-1 and y==1) cout<<"yes";
else if(x==0 and y==0) cout<<"yes";
else cout<<"no";
return 0;
}
这里空空如也
有帮助,赞一个