| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145898 | 冰块ee | 08判断区间 | C++ | Wrong Answer | 1 MS | 268 KB | 201 | 2026-01-25 19:29:47 |
#include<bits/stdc++.h> using namespace std; int a[5]; int main(){ cin>>a[1]>>a[2]>>a[3]; if(a[1]<=a[3]&&a[2]<=a[3]){ cout<<"yes"; }else{ cout<<"no"; } }
------Input------
48 73 96
------Answer-----
no
------Your output-----
yes