📅  最后修改于: 2020-10-18 11:47:14             🧑  作者: Mango
该函数计算升到给定幂数的指数e。
考虑数字“ x”。语法为:
float exp(float x);
double exp(double x);
long double exp(long double x);
double exp(integral x);
x:要计算其指数值的值。
它返回float,double或long double类型的指数值。
如果值太大,则函数返回HUGE_VAL
让我们看一个简单的例子,当x的值为正时。
#include
#include
using namespace std;
int main()
{
float x=0.2;
cout<<"Value of x is : "<
输出:
Value of x is : 0.2
Exponential value of x is : 1.2214
在此示例中,当x的值为正时,exp()函数计算x的指数值。
让我们看一个简单的例子,当x的值为负时
#include
#include
using namespace std;
int main()
{
double x= -5.3;
cout<<"Value of x is : "<
输出:
Value of x is : -5.3
Exponential value of x is : 0.00499159
在此示例中,当x的值为负时,exp()函数计算x的指数值。