输出没错,这是warning怎么处理?

来源:5-8 递归函数(二)

Jasper_zyt

2020-07-13 14:31

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


写回答 关注

2回答

  • 慕前端7036615
    2020-07-14 21:58:55
    已采纳

    int getPeachNumber(n)改成int getPeachNumber( int n)试试

  • 慕容5401208
    2020-07-23 17:25:52

    你好。c:在函数“getPeachNumber”中:


    你好。c:2:5:警告:“n”的类型默认为“int”[-Wimplicit int]


    int getPeachNumber(n)   意思就是n没有定义数据类型  默认是int 


C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926212 学习 · 20797 问题

查看课程

相似问题