标题:递归求输入和 为什么总提示函数定义错误
取消只看楼主
落叶风
Rank: 2
等 级:论坛游民
帖 子:22
专家分:53
注 册:2011-6-22
结帖率:100%
已结贴  问题点数:5 回复次数:0 
递归求输入和 为什么总提示函数定义错误
#include<stdio.h>
void main()
{
    void test(int *sum);
    int s;
    scanf("%d",&s);
    test(&s);
    printf("%d",s);
    void test(int *sum)
    {
       int x;
       scanf("%d",&x);
       if(x==0)
           *sum=0;
       else
       {
          test(sum);
            *sum+=x;
       }
    }
   
}
搜索更多相关主题的帖子: void 
2011-11-01 22:49



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-354017-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.388284 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved