问答详情
源自:5-8 递归函数(二)

递归函数(二)中出现的问题

hello.c: In function 'getPeachNumber':
hello.c:2:5: warning: type of 'n' defaults to 'int' [-Wimplicit-int]
int getPeachNumber(n)

提示以上输入错误,求大神解答

提问者:噬魂师 2020-06-21 20:49

个回答

  • 秦信望
    2020-06-23 19:59:11

    在函数中你没有给n定义类型,这里默认为int类型。