Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
120820 | 张裕铭 | 18成绩修改 | C++ | Compile Error | 0 MS | 0 KB | 207 | 2025-06-01 09:35:19 |
#include<bits/stdc++.h> using namespace std; int main() { int a[101],x,n,s; cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; cin>>s>>x; a[s]=x; for(int i=1;i<=n;i++) cout<<a[i]<<" "; return 0;
Main.cc: In function 'int main()': Main.cc:13:10: error: expected '}' at end of input return 0; ^