| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154094 | 王艺博 | 08判断区间 | C++ | Wrong Answer | 1 MS | 280 KB | 209 | 2026-05-24 14:32:54 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>=b){ }else{ cout<<"no"; } if(a<=c){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
------Input------
30 95 65
------Answer-----
no
------Your output-----
noyes