为了账号安全,请及时绑定邮箱和手机立即绑定

为什么要再次定义sum?不懂。

#include <stdio.h> 

 int year(int n)

 {

    if(n==0)

    {

     return 0;

     }

     else if(n==1)

      {

        return 10;

      }

      else

     {

        int sum;\\这里定义过。\\

        sum=(year(n-1)+2);

        return sum;

     }

 }

int main() 

{

    int sum=year(5);\\这里为什么要加int,前面不是定义过吗?\\

printf("第5个人的年龄是%d岁", sum); 

return 0;

}


正在回答

2 回答

谢谢你的回答,现在明白了,下节有讲局部与全局变量。

0 回复 有任何疑惑可以回复我~

Indeed you difine the SUMs above twice; howeve, different SUMs remain two specific characters as well as the SUM will be output by its own

0 回复 有任何疑惑可以回复我~
#1

旧城不暖少年心 提问者

谢谢你的回答,现在明白了,下节有讲局部与全局变量。
2017-05-08 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么要再次定义sum?不懂。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信