Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151689 王显端 逆序输出 C++ Compile Error 0 MS 0 KB 206 2026-04-18 11:00:51

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:2: error: expected '}' at end of input
  }
  ^
Main.cc:13:2: error: expected '}' at end of input