目录
开头
大家好,我叫这是我58,在这篇博客中,我将会介绍C语言里的pow
函数,那么,如果你对它非常感兴趣的话,就请看一下下面的内容吧。
什么是pow
函数
pow
函数在C语言里的<math.h>
或者<tgmath.h>
头文件里面,用来求把 a a a个 b b b相乘的结果,( a a a是一个数, b b b也是一个数)。
pow
函数本身和正常返回值
pow
函数本身
c
double pow(double a,double b)
^1^
pow
函数的返回值
c
double a^b
pow
函数的实际运用
求6^8的值
程序
c
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <math.h>
int main() {
printf("%lf", pow(6, 8));
return 0;
}
输出
1679616
求3^ 3^3的值
程序
c
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <math.h>
int main() {
printf("%lf", pow(pow(3,3), 3));
return 0;
}
输出
7625597484987
求11.4^5.14的值
程序
c
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <math.h>
int main() {
printf("%lf", pow(11.4, 5.14));
return 0;
}
输出
270701.670537
结尾
在看到这里后,我想你应该完全知道了C语言中的pow函数了吧,如果你现在也喜欢这个pow函数的话,就可以评论或者投票来互动一下我哦。