Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106533 顾梦琪 18陶陶摘苹果 C++ Compile Error 0 MS 0 KB 232 2025-01-16 12:24:39

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a[10]; for(int i=0;i<10;i++){ cin>>a[i]; } int c=0; int g; cin>>g; for(int i=0;i<10;i++){ if(g+30>=a[i]){ c++; } } cout<<c; return 0;


Run Info:

Main.cc: In function 'int main()':
Main.cc:17:10: error: expected '}' at end of input
  return 0;
          ^