05 P1928 外星密码
题目:
代码:
#include <stdio.h>
#include<iostream>
using namespace std;
string f()
{
char c;string s;string stemp;
while(cin>>c)
{
if(c=='[')
{
int n;cin>>n;
stemp+=f();
for(int i=1;i<=n;i++)
{
s+=stemp;
}
}
else if(c==']')
{
return s;
}
else
{
s+=c;
}
}
}
int main()
{
cout<<f();
}
原文地址:https://blog.csdn.net/qq_69155454/article/details/143629125
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!