| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151501 | 杨金卓 | 18陶陶摘苹果 | C++ | Compile Error | 0 MS | 0 KB | 235 | 2026-04-12 15:55:57 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,b=0; int a[2000]; for(int i=0;i<10;i++){ cin>>a[i]; } cin>>x; x+=30; for(int i=0;i<10;i++){ if(a[i]=>x){ b++; } } cout<<b; return 0; }
Main.cc: In function 'int main()':
Main.cc:12:11: error: expected primary-expression before '>' token
if(a[i]=>x){
^