Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100426 | 谢佳辰 | 08判断区间 | C++ | Compile Error | 0 MS | 0 KB | 192 | 2024-12-07 17:34:01 |
#include <iostream> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(a>=x&&<=y){ cout<<"yes"<<endl; }else{ cout<<"no"<<endl; } }
Main.cc: In function 'int main()': Main.cc:6:14: error: expected primary-expression before '<=' token if(a>=x&&<=y){ ^