Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1454 | 邓小龙 | 08判断区间 | C++ | Accepted | 0 MS | 260 KB | 334 | 2023-09-30 17:04:48 |
# include<iostream> # include<cstdio> #include<iomanip> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; //a=10;x=1;y=0 if(x<=a){ if(a<=y){ cout<<"yes"; } else{ cout<<"no"; } } else{ cout<<"no"; } return 0; }