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.

improved formatting

+5 -5
+2 -2
content/languages/csharp.html
··· 7 7 -------- 8 8 C# has [IEEE 754](/formats/fp/) single and double precision types supported by keywords: 9 9 float f = 0.1f; // 32 bit float, note f suffix 10 - double d = 0.1; // 64 bit float, suffix optional 10 + double d = 0.1d; // 64 bit float, suffix optional 11 11 12 12 13 13 Decimal Types ··· 27 27 28 28 Resources 29 29 --------- 30 - [C# Referece](http://msdn.microsoft.com/en-us/library/618ayhy6%28v=VS.80%29.aspx) 30 + * [C# Referece](http://msdn.microsoft.com/en-us/library/618ayhy6%28v=VS.80%29.aspx) 31 31 32 32
+2 -2
content/languages/javascript.html
··· 30 30 31 31 Resources 32 32 --------- 33 - [BigDecimal for JavaScript](http://stz-ida.de/html/oss/js_bigdecimal.html.en) 34 - [Core JavaScript Reference](https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference) 33 + * [BigDecimal for JavaScript](http://stz-ida.de/html/oss/js_bigdecimal.html.en) 34 + * [Core JavaScript Reference](https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference) 35 35 36 36
+1 -1
content/languages/php.html
··· 25 25 26 26 Resources 27 27 --------- 28 - [PHP manual](http://www.php.net/manual/en/index.php) 28 + * [PHP manual](http://www.php.net/manual/en/index.php) 29 29