15 lines
278 B
Plaintext
Raw Normal View History

2013-05-13 15:25:24 +02:00
<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>