标题:水仙花数程序中too many arguments to错误
只看楼主
Lynnnn
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-11-26
结帖率:100%
已结贴  问题点数:20 回复次数:2 
水仙花数程序中too many arguments to错误
#include<stdio.h>
#include<math.h>
main()
{
    int i;
    int sxh();/*计算三个位数字立方和的函数*/
    for(i=100;i<1000;i++)
    {
        if(i==sxh(i))/*为什么这一步总提示[Error] too many arguments to function 'int sxh()'*/
        printf("%d",i);
    }
}
int sxh(int x)
{
    int a,b,c;
    a=pow(x%10,3);
    b=pow(x%100-a,3);
    c=pow(x/100,3);
    x=a+b+c;
    return x;
}
搜索更多相关主题的帖子: include 水仙花 
2016-11-26 16:52
xufan
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:6
帖 子:232
专家分:804
注 册:2008-10-20
得分:20 
那是因为你的函数申明int sxh();/*计算三个位数字立方和的函数*/ 要求没有参数,而实际你却有传递参数,肯定是不对的

~~~~~~我的明天我知道~~~。
2016-11-26 17:10
Lynnnn
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-11-26
得分:0 
回复 2楼 xufan
噢对对对,谢谢~
2016-11-26 17:48



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




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

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