Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
51607 | zhangsicun | 点和正方形的关系 | C++ | 通过 | 0 MS | 244 KB | 250 | 2024-09-22 21:48:48 |
#include <bits/stdc++.h> using namespace std; int main(){ int x, y; if(x>1 or x<-1){ cout<<"no"; }else{ if(y>1 or y<-1){ cout<<"no"; }else{ cout<<"yes"; } } return 0; }