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

fabs() ใน C++


ฟังก์ชันไลบรารี C หรือ C++ double fabs(double x) ส่งคืนค่าสัมบูรณ์ของ x x− นี่คือค่าทศนิยม ฟังก์ชันนี้คืนค่าสัมบูรณ์ของ x.Following คือการประกาศฟังก์ชัน fabs()

double fabs(double x)

ตัวอย่างต่อไปนี้แสดงการใช้งานฟังก์ชัน fabs()

ตัวอย่าง

#include <iostream>
#include <cmath>
using namespace std;
int main () {
   int a, b;
   a = 1234;
   b = -344;
   cout << "The absolute value of " << a << " is " << fabs(a) <<
   endl;
      cout << "The absolute value of " << b << " is " << fabs(b) <<
   endl;
      return(0);
}

ผลลัพธ์

The absolute value of 1234 is 1234
The absolute value of -344 is 344