Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135854 欧阳俊懿 反转字符串 C++ Accepted 1 MS 264 KB 481 2025-11-08 16:30:10

Tests(10/10):


Code:

#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(){ int n,i; char *a=new char[101]; memset(a,0,sizeof(char)*101); gets(a); n=strlen(a); for(i=n-1;i>=0;i--) { cout<<a[i]; } cout<<endl; delete []a; return 0; }