Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
152444 孔声豪 18插队喝水 C++ Compile Error 0 MS 0 KB 227 2026-04-26 11:22:25

Tests(0/0):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int n,x; cin>>n; int a[101]={ } for(int i=0;i<n;i++){ cin>>a[i]; } cin>>x; for(int i=0;i<x;i++){ a[x]=a[x+1]; } a[x]=x; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:7:1: error: expected ',' or ';' before 'for'
 for(int i=0;i