C庫函式double exp(double x) 返回值e的第x次方。
以下是exp() 函式的宣告。
double exp(double x)
x -- 這是浮點值。
這個函式返回x的指數值。
下面的例子顯示 exp() 函式的用法。
#include <stdio.h> #include <math.h> int main () { double x = 0; printf("The exponential value of %lf is %lf ", x, exp(x)); printf("The exponential value of %lf is %lf ", x+1, exp(x+1)); printf("The exponential value of %lf is %lf ", x+2, exp(x+2)); return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
The exponential value of 0.000000 is 1.000000 The exponential value of 1.000000 is 2.718282 The exponential value of 2.000000 is 7.389056