Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100336 谢佳辰 08判断区间 C++ Wrong Answer 0 MS 264 KB 188 2024-12-07 15:59:31

Tests(0/10):


Code:

#include <iostream> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(x<a>y){ cout<<"yes"<<endl; }else{ cout<<"no"<<endl; } }


Run Info:

------Input------
33 9 76
------Answer-----
yes
------Your output-----
no