ALGO-139. s01串

问题描述

  
s01
串初始为
”0″

  按以下⽅式变换

  
0

1

1

01

输⼊格式

  
1
个整数
(0~19)

输出格式

  
n
次变换后
s01

样例输⼊

3

样例输出

101

数据规模和约定

0~19

下面是本题代码

#include
#include
#include #include
using namespace std;
int main()
{
int n;
cin>>n;
string s="0";
while(n--)
{
for(int i=0;i

ALGO-139. s01串最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/10066.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>