2013-05-13 15:29:54 +02:00

15 lines
278 B
Plaintext

<h3>Funktion floor()</h3>
Rundet eine Zahl ab.
<h4>Syntax</h4>
<code>floor(wert)</code><br>
<h4>Argumente</h4>
<code>wert</code> - eine Zahl.
<br>
<h4>Beispiel</h4>
<!-- Show example of function.-->
<code>floor(4.9) &rarr; 4</code><br>
<code>floor(-4.9) &rarr; -5</code><br>