Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87825 | 朱俊燃 | 逆序输出 | C++ | Runtime Error | 1 MS | 272 KB | 203 | 2024-08-15 10:35:53 |
#include<bits/stdc++.h> using namespace std; int main() { int n[10],a; cin>>a; for(int i=0;i<a;i++) { cin>>n[i]; } cout<<n[2]<<" "<<n[1]<<" "<<n[0]; return 0; }
*** stack smashing detected ***: ./Main terminated