kennen:lib:fdim
Inhaltsverzeichnis
fdim()
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'; }
kennen/lib/fdim.txt · Zuletzt geändert: 2019-11-20 15:13 von 127.0.0.1