Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
90498 sh25_ganzy 字符串逆序 C++ 通过 0 MS 244 KB 160 2026-06-05 15:48:12

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); for(int i=s.size()-2;i>=0;i--) cout<<s[i]; return 0; }


测评信息: