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.

More detailed References on language pages

+18 -10
+1 -1
README.txt
··· 6 6 when they are not appropriate. 7 7 8 8 The site is built using the nanoc static site generator: 9 - http://nanoc.stoneship.org/ 9 + http://nanoc.stoneship.org/ (Requires the kramdown and adsf gems) 10 10 11 11 and published under the Creative Commons Attribution License (BY): 12 12 http://creativecommons.org/licenses/by/3.0/
+5 -1
content/languages/csharp.html
··· 27 27 28 28 Resources 29 29 --------- 30 - * [C# Reference](http://msdn.microsoft.com/en-us/library/618ayhy6%28v=VS.80%29.aspx) 30 + * [C# Reference](http://msdn.microsoft.com/en-us/library/618ayhy6%28v=VS.80%29.aspx) 31 + * [float type](http://msdn.microsoft.com/en-us/library/b1e65aza%28v=VS.80%29.aspx) 32 + * [double type](http://msdn.microsoft.com/en-us/library/678hzkk9%28v=VS.80%29.aspx) 33 + * [decimal type](http://msdn.microsoft.com/en-us/library/364x0z75%28v=VS.80%29.aspx) 34 + * [Math.Round()](http://msdn.microsoft.com/en-US/library/system.math.round%28v=VS.80%29.aspx) 31 35 32 36
+5 -1
content/languages/java.html
··· 37 37 Resources 38 38 --------- 39 39 * [Java Language Specification](http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html) 40 - * [Java Standard API](http://java.sun.com/javase/6/docs/api/) 40 + * [Floating-Point Types, Formats, and Values](http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.2.3) 41 + * [Java Standard API](http://java.sun.com/javase/6/docs/api/) 42 + * [BigDecimal](http://download.oracle.com/javase/6/docs/api/java/math/BigDecimal.html) 43 + * [DecimalFormat](http://download.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html) 44 + * [String.format()](http://download.oracle.com/javase/6/docs/api/java/lang/String.html#format(java.lang.String,%20java.lang.Object...))
+3 -2
content/languages/javascript.html
··· 31 31 Resources 32 32 --------- 33 33 * [BigDecimal for JavaScript](http://stz-ida.de/index.php?option=com_content&id=18) 34 - * [Core JavaScript Reference](https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference) 35 - 34 + * [Core JavaScript Reference](https://developer.mozilla.org/en/JavaScript/Reference) 35 + * [parseFloat()](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/parseFloat) 36 + * [toPrecision()](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Number/toPrecision) 36 37
+4 -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 + * [Floating point types](http://www.php.net/manual/en/language.types.float.php) 30 + * [BC Math extension](http://de3.php.net/manual/en/ref.bc.php) 31 + * [number_format()](http://de3.php.net/manual/en/function.number-format.php) 29 32
-4
content/style.css
··· 74 74 line-height: 20px; 75 75 } 76 76 77 - #main ul { 78 - margin: 20px; 79 - } 80 - 81 77 #main li { 82 78 list-style-type: square; 83 79