kennen:lib:trunc
Inhaltsverzeichnis
trunc()
#include
<cmath>
double trunc (double x)
Schneidet den Nachkommaanteil der Zahl x
ab (rundet zu Null hin).
Parameter
x | Gleitkommazahl |
Ergebnis
Rückgabewert: ganzzahliger Anteil der Zahl x
.
Siehe auch
Beispiel
- trunc.cpp
#include <cmath> #include <iostream> int main() { double x = 12.345; std::cout << std::trunc(x) << '\n'; }
kennen/lib/trunc.txt · Zuletzt geändert: 2019-11-20 16:34 von 127.0.0.1