Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
54241 littletwleve 字符串逆序 C++ 通过 0 MS 248 KB 233 2024-10-26 18:22:54

Tests(1/1):


#include<bits/stdc++.h> using namespace std; string s; void f(int index) { if(index == -1) { return; } cout << s[index]; f(index - 1); } int main() { cin >> s; int len = s.size() - 2; f(len); return 0; }


测评信息: