gpt4 book ai didi

c - 错误 : redifinition; different basic types

转载 作者:太空宇宙 更新时间:2023-11-04 01:34:40 24 4
gpt4 key购买 nike

<分区>

我写了一个基本的递归代码但是发生了一个错误:

redifinition; different basic types

代码如下:

int m=1; 
void countDown(int n)
{ /* count down */
printf("Count down: %d\t", n--);
if(n<1) return; /* terminate recursion */
else countUP(n); /* start/continue indirect recursion */
}

void countUP(int n)
{
printf("up: %d\n", m++);
countDown(n);
/* indirect recursion */
}

void main()
{

countDown(5);
return;
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com