C Power函数负指数没有pow()

时间:2018-03-29 18:52:40

标签: c function exponent

我正在尝试在C中制作一个用于学习目的的小功率计算器,而不使用pow, 但当指数为负时,它总是返回0.00,请帮忙。

完整代码:

#include<stdio.h>
//*  power caculator function

int power(x,y)
{
   float p=1.00;
   int i;
    if (y<0){
        y=-1*y;
        x=1/x;
    }
    for (i=1;i<=y;i++)
    {
        p=p*x;
    }

return p;
}



//*  main gets input, calls power caculator and prints result'
int main()
{
int b;
int e;
float p;
printf("enter base");
scanf("%d",&b);
printf("enter exponent");
scanf("%d",&e);
p=power(b,e);
printf("%d to the power of %d is %.2f",b,e,p);
return 0;
}
//* I am NOOB

2 个答案:

答案 0 :(得分:0)

明确定义x和y的数据类型,然后调整返回数据类型。

答案 1 :(得分:-1)

您使用整数来保存小数值,在本例中使用x和power函数的返回类型。

尝试:

float power(x,y)
{
   float p=1.00;
   float xx = (float)x;
   int i;
    if (y<0){
        y=-1*y;
        xx=1/xx;
    }
    for (i=1;i<=y;i++)
    {
        p=p*xx;
    }

return p;
}