Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98563 | 金昱帆 | 08判断区间 | C++ | Compile Error | 0 MS | 0 KB | 156 | 2024-11-23 11:34:40 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(x<a&&a<y){ cout<<YES; }else{ cout<<NO; } return 0; }
Main.cc: In function 'int main()': Main.cc:7:8: error: 'YES' was not declared in this scope cout<