题解
2026-01-19 10:48:38
发布于:北京
5阅读
0回复
0点赞
#include<iostream>
#include <string>
using namespace std;
string s="吓得我抱起了\n抱着抱着抱着我的小鲤鱼的我的我的我";
void f1(int n)
{
if(n==s.size())
{
return;
}
else
{
cout<<s[n];
}
return f1(n+1);
}
int main()
{
f1(0);
}
这里空空如也


有帮助,赞一个