trisolarday吧 关注:5贴子:46
  • 1回复贴,共1

幂函数 C语言

只看楼主收藏回复

#include<math.h>
函数原型是:
1.double pow(double _X,double _Y);
2.double pow(double _X,int _Y);
3.long double pow(long double _X,long double _Y);
4.long double pow(long double _X,int _Y);
5.float pow(float _X,float _Y);
6.float pow(float _X,int _Y);


IP属地:北京1楼2017-10-07 17:22回复
    函数名: pow
    功 能: 指数函数(x的y次方)
    用 法: double pow(double x, double y);
    程序例:
    #include
    #include
    int main(void)
    {
    double x = 2.0, y = 3.0;
    printf("%lf raised to %lf is %lf\n", x, y, pow(x, y));
    return 0;
    }
    函数名: pow10
    功 能: 指数函数(10的p次方)
    用 法: double pow10(int p);
    程序例:
    #include
    #include
    int main(void)
    {
    double p = 3.0;
    printf("Ten raised to %lf is %lf\n", p, pow10(p));
    return 0;
    }
    当然是math.h呀,kwgrg给出的原型太有意思,C中函数还可以重载倒是第一次听说


    IP属地:北京2楼2017-10-07 17:25
    回复