紫竹


私信TA

用户名:urnachan

访问量:30194

签 名:

等  级
排  名 305
经  验 5575
参赛次数 0
文章发表 72
年  龄 0
在职情况 学生
学  校 合肥工业大学
专  业

  自我简介:

TA的其他文章

#include "stdafx.h"

#include "string.h"

#define max 10000

void fun(int n)

{

char s = '0', a[max] = {0}, b[max] = { 0 };

int i,j,k=0,t;

a[0] = s;

for (i = 0; i < n; i++)

{

t = strlen(a);

for (j = 0; j < t ; j++)

{

if (a[j] == '0')

{

b[k++] = '1';

}

else if (a[j] == '1')

{

b[k++] = '0';

b[k++] = '1';

}

}

strcpy(a, b);

k = 0;

}

puts(a);

}

int main()

{

unsigned int n;

scanf("%d", &n);

fun(n);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »