Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
106020 | 金昱帆 | 18陶陶摘苹果 | C++ | Compile Error | 0 MS | 0 KB | 273 | 2025-01-15 11:54:49 |
#include<bits/stdC++.h> using namespace std; int main(){ int n=10; int a[n],b; for(int i=0;i<n;i++){ cin>>a[i]; } cin>>b; int count=0; for(int i=0;i<n;i++){ if(b+30>=a[i]){ count++; } } cout<<count<<endl; return 0; }
Main.cc:1:25: fatal error: bits/stdC++.h: No such file or directory #include ^ compilation terminated.