发布者:尹娜发布时间:2025-03-17浏览次数:11
程序分析
递归真是蠢方法。def rec(string):
if len(string)!=1:rec(string[1:])print(string[0],end='')rec(input('string here:'))