여기서 우리는 C++에서 fdim() 함수가 무엇인지 볼 것입니다. fdim() 함수는 주어진 두 인수 사이의 양의 차이를 반환하는 데 사용됩니다. 두 개의 인수가 각각 및 b이고>b이면 - b를 반환합니다. 그렇지 않으면 0을 반환합니다.
예시
#include <cmath> #include <iostream> using namespace std; main() { cout << "fdim of (5.0, 2.0) is " << fdim(5.0, 2.0) << endl; //positive difference cout << "fdim of (2.0, 5.0) is " << fdim(2.0, 5.0) << endl; //this will return 0 cout << "fdim of (-5.0, -2.0) is " << fdim(-5.0, -2.0) << endl; //this will return 0 cout << "fdim of (-2.0, -5.0) is " << fdim(-2.0, -5.0) << endl; //positive difference }
출력
fdim of (5.0, 2.0) is 3 fdim of (2.0, 5.0) is 0 fdim of (-5.0, -2.0) is 0 fdim of (-2.0, -5.0) is 3