c power函数

要加头文件 #include <math.h>

s=pow(a,b)表示s的值等于a的b次方

此外查阅得知pow函数的参数应为double型,返回值也为double型(but我的int型也没有报错)

codeblocks运行示例

​​​​​​c power函数

 c power函数

对应的一道oj题

c power函数

#include <stdio.h>

#include <math.h>

int main()

{

    int n;

    float x;

    scanf("%d",&n);

    x = pow(2,1.0/n)-1;

    printf("%.2f%%",x*100);

    return 0;

}

 

上一篇:枚举算法——①基础


下一篇:CSS动画基础知识