Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98742 | 毛靖平 | 08判断区间 | C++ | Compile Error | 0 MS | 0 KB | 171 | 2024-11-23 14:18:07 |
include<iostream> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(a>x && a<y){ cout<<"yes"; } else{ cout<<"no"; } }
Main.cc:1:1: error: 'include' does not name a type include ^ Main.cc: In function 'int main()': Main.cc:5:4: error: 'cin' was not declared in this scope cin>>a>>x>>y; ^ Main.cc:7:7: error: 'cout' was not declared in this scope cout<<"yes"; ^ Main.cc:10:7: error: 'cout' was not declared in this scope cout<<"no"; ^