Lo que todo programador debería saber sobre aritmética de punto flotante
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use backticks instead of HTML code tag

+1 -1
+1 -1
content/languages/php.html
··· 18 18 19 19 How to Round 20 20 ------------ 21 - Rounding can be done with the <code>number_format()</code> function: 21 + Rounding can be done with the `number_format()` function: 22 22 $number = 4.123; 23 23 echo number_format($number, 2); // prints 4.12 24 24