蓝桥杯-算法训练 s01串

问题描述
  s01串初始为"0"
  按以下方式变换
  0变1,1变01
输入格式
  1个整数(0~19)
输出格式
  n次变换后s01串
样例输入

3

样例输出

101

数据规模和约定

0~19

代码

#include 
#include 
using namespace std;

string s01(int n,string a){
    if (n==0) {
        return a;
    }
    for (int i=0; i>N;
    cout<

你可能感兴趣的:(蓝桥杯-算法训练 s01串)