Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3922 邓小龙 08判断区间 C++ Accepted 0 MS 264 KB 349 2024-07-19 14:19:29

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; //1.判断a>=x; if(a>=x){ //2.判断a<=y if(a<=y){ cout<<"yes"; } else{//a>y cout<<"no"; } } else{//a<x cout<<"no"; } cout<<endl; return 0; }