Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
121276 胡汪兵-小胡老师 18高度为k的树 C++ Compile Error 0 MS 0 KB 210 2025-06-07 10:13:19

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a[1000001],n,gd,cnt=0; cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; cin>>gd; for(int i=1;i<=n;i++) if(a[i]==gd) cnt++; cout<<cnt;


Run Info:

Main.cc: In function 'int main()':
Main.cc:12:11: error: expected '}' at end of input
  cout<