Computer >> Máy Tính >  >> Lập trình >> C ++

exp () hàm C ++

Hàm thư viện C / C ++ double exp (double x) trả về giá trị của e được nâng lên lũy thừa thứ x. Sau đây là khai báo cho hàm exp ().

double exp(double x)

Tham số là một giá trị dấu phẩy động. Và hàm này trả về giá trị theo cấp số nhân của x.

Ví dụ

#include <iostream>
#include <cmath>
using namespace std;
int main () {
   double x = 0;
   cout << "The exponential value of " << x << " is " << exp(x) << endl;
   cout << "The exponential value of " << x+1 << " is " << exp(x+1) <<
   endl;
      cout << "The exponential value of " << x+2 << " is " << exp(x+2) <<
   endl;
   return(0);
}

Đầu ra

The exponential value of 0 is 1
The exponential value of 1 is 2.71828
The exponential value of 2 is 7.38906