Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145899 冰块ee 08判断区间 C++ Accepted 0 MS 272 KB 201 2026-01-25 19:30:01

Tests(10/10):


Code:

#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[1]){ cout<<"yes"; }else{ cout<<"no"; } }