| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151386 | 曾钰涵 | 逆序输出 | C++ | Compile Error | 0 MS | 0 KB | 186 | 2026-04-12 11:57:16 |
#include<iostream> using namespace std; int main(){ int n,a[102]={}; cin>>n; for(int i=0;i<n;i++)cin>>a[i]; for(int i=n-1;i>=0;i--)cout<<a[i]<<''; return 0; }
Main.cc:7:40: error: empty character constant
for(int i=n-1;i>=0;i--)cout<