| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 135853 | 欧阳俊懿 | 反转字符串 | C++ | Output Limit Exceeded | 1 MS | 268 KB | 442 | 2025-11-08 16:26:41 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char a[101]={}; gets(a); int l=strlen(a); char *p; p=&a[l-1]; for(int i=l-1;l>=0;i--){ cout<<*p; p--; } cout<<endl; return 0; }