Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135852 林嘉乐 反转字符串 C++ Accepted 1 MS 268 KB 290 2025-11-08 16:25:58

Tests(10/10):


Code:

#include<bits/stdc++.h> 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(int i=n-1;i>=0;i--){ cout<<a[i]; } cout<<endl; delete [] a; return 0; }