Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ฟังก์ชัน exp() C++


ฟังก์ชันไลบรารี C / C++ double exp(double x) จะคืนค่าของ e ที่ยกขึ้นเป็นยกกำลังที่สิบ ต่อไปนี้เป็นการประกาศสำหรับฟังก์ชัน exp()

double exp(double x)

พารามิเตอร์เป็นค่าทศนิยม และฟังก์ชันนี้จะคืนค่าเลขชี้กำลังของ x

ตัวอย่าง

#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);
}

ผลลัพธ์

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