Inhaltsverzeichnis

fdim()

#include <cmath>

double fdim (double x, double y) 

Liefert positive Differenz von x und y oder 0.

Parameter

x, y reelle Zahl

Ergebnis

Rückgabewert: x>y ? x-y : 0.

Siehe auch

-

Beispiel

fdim.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  double x = 13, y = 5;
 
  std::cout << "positive Differenz " << std::fdim(x, y) << '\n';
}