ABRUNDEN

Aus OWiki
Wechseln zu: Navigation, Suche

Abrunden ist eine mathematische Funktion, die aus einer reellen Zahl (also einer Zahl mit Komma) eine Ganzzahl (also eine Zahl ohne Komma) macht. Beim Abrunden wird dabei die nächst kleinere Ganzzahl verwendet.

Beispiele:
ABRUNDEN(1)     = 1
ABRUNDEN(1,001) = 1
ABRUNDEN(1,5)   = 1
ABRUNDEN(1,999) = 1
ABRUNDEN(2)     = 2
Verwendung in JavaScript:
ABRUNDEN(X) = Math.floor(X)
Verwendung in Microsoft Excel:
ABRUNDEN(X) = ABRUNDEN(X;0)
ABRUNDEN(X) = KÜRZEN(X)
ABRUNDEN(X) = GANZZAHL(X) (nur für posive X)
Verwendung in OpenOffice Calc:
ABRUNDEN(X) = ABRUNDEN(X)
ABRUNDEN(X) = KÜRZEN(X)
ABRUNDEN(X) = GANZZAHL(X)
Verwendung in PHP:
ABRUNDEN(X) = floor(X)
mathematische Funktionen in OGame-Formeln

ABRUNDEN | ABS | AUFRUNDEN | MAX | MIN | RUNDEN |