| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136435 | 李朋秦 | 单词翻转 | C++ | Compile Error | 0 MS | 0 KB | 164 | 2025-11-14 15:39:05 |
#include<bits/stdc++.h> using namespace std; int main() { string a; getine(cin,a); int l=a.size(); for(int i=l-1;i>=0;i--)cout<<a[i]; return 0; }
Main.cc: In function 'int main()':
Main.cc:6:14: error: 'getine' was not declared in this scope
getine(cin,a);
^