Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136200 郑喆哲 字符倒序 C++ Accepted 1 MS 268 KB 201 2025-11-09 17:42:57

Tests(1/1):


Code:

#include<iostream> #include<cstring> #include<bits/stdc++.h> using namespace std; int main() { char s1[101]; gets(s1); for(int c=strlen(s1)-1;c>=0;c--) { cout<<s1[c]; } return 0; }