| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128749 | 田祥江 | 08判断区间 | C++ | Wrong Answer | 1 MS | 268 KB | 164 | 2025-08-19 14:37:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(a>x&&a<y){ cout<<"Yes"; }else{ cout<<"No"; } }
------Input------
33 9 76
------Answer-----
yes
------Your output-----
Yes