π
π
PowerShell by default uses double type, but because it runs on .NET it has the
same types as C# does. Thanks to that the Decimal type can be used -
directly by providing the type name [decimal] or via suffix d.
More about that in the C# section.
π ABAP
π ABAP
WRITE / CONV f( '.1' + '.2' ).
and
WRITE / CONV decfloat16( '.1' + '.2' ).
0.30000000000000004
and
0.3
π APL
π APL
0.1 + 0.2
and
βPP β 17
0.1 + 0.2
and
0.3 = 0.1 + 0.2
and
βCTβ0
0.3 = 0.1 + 0.2
and
βFR β 1287
βPP β 34
0.1 + 0.2
and
βFR β 1287
βDCT β 0
0.3 = 0.1 + 0.2
0.3
and
0.30000000000000004
and
1
and
0
and
0.3
and
1
APL has a default printing precision of 10 significant digits. Setting βPP to 17 shows the error, however 0.3 = 0.1 + 0.2 is still true (1) because thereβs a default comparison tolerance of about 10-14. Setting βCT to 0 shows the inequality. Dyalog APL also supports 128-bit decimal numbers (activated by setting the float representation, βFR, to 1287, i.e. 128-bit decimal), where even setting the decimal comparison tolerance (βDCT) to zero still makes the equation hold true. Try it online! Multi-precision floats, unlimited precision rationals, and ball arithmetic are available in NARS2000.
π Ada
π Ada
with Ada.Text_IO; use Ada.Text_IO;
procedure Sum is
A : Float := 0.1;
B : Float := 0.2;
C : Float := A + B;
begin
Put_Line(Float'Image(C));
Put_Line(Float'Image(0.1 + 0.2));
end Sum;
π AutoHotkey
π AutoHotkey
π AutoIt
π AutoIt
π C
π C
#include <stdio.h>
int main(int argc, char** argv) {
printf("%.17f\n", .1 + .2);
return 0;
}
π C#
π C#
Console.WriteLine("{0:R}", .1 + .2);
and
Console.WriteLine("{0:R}", .1f + .2f);
and
Console.WriteLine("{0:R}", .1m + .2m);
0.30000000000000004
and
0.3
and
0.3
C# has support for 128-bit decimal numbers, with 28-29 significant digits
of precision. Their range, however, is smaller than that of both the single and
double precision floating point types. Decimal literals are denoted with the m
suffix.
π C++
π C++
#include <iomanip>
#include <iostream>
int main() {
std::cout << std::setprecision(17) << 0.1 + 0.2;
}
π Clojure
π Clojure
Clojure supports arbitrary precision and ratios. (+ 0.1M 0.2M) returns 0.3M,
while (+ 1/10 2/10) returns 3/10.
π ColdFusion
π ColdFusion
<cfset foo = .1 + .2>
<cfoutput>#foo#</cfoutput>
π Common Lisp
π Common Lisp
(+ .1 .2)
and
(+ 1/10 2/10)
and
(+ 0.1d0 0.2d0)
and
(- 1.2 1.0)
0.3
and
3/10
and
0.30000000000000004d0
and
0.20000005
CLβs spec doesnβt actually even require radix-2 floats (let alone specifically 32-bit singles and 64-bit doubles), but the high-performance implementations all seem to use IEEE floats with the usual sizes. This was tested on SBCL and ECL in particular.
π Crystal
π Crystal
puts 0.1 + 0.2
and
puts 0.1_f32 + 0.2_f32
0.30000000000000004
and
0.3
π D
π D
import std.stdio;
void main(string[] args) {
writefln("%.17f", .1+.2);
writefln("%.17f", .1f+.2f);
writefln("%.17f", .1L+.2L);
}
0.29999999999999999
0.30000001192092896
0.30000000000000000
π Dart
π Dart
π Delphi XE5
π Delphi XE5
π Elixir
π Elixir
π Elm
π Elm
π Elvish
π Elvish
Elvish uses Goβs double for numerical operations.
π Emacs Lisp
π Emacs Lisp
π Erlang
π Erlang
io:format("~w~n", [0.1 + 0.2]).
io:format("~f~n", [0.1 + 0.2]).
io:format("~e~n", [0.1 + 0.2]).
io_lib:format("~.1f~n", [0.1 + 0.2]).
io_lib:format("~.2f~n", [0.1 + 0.2]).
0.30000000000000004
0.300000
3.00000e-1
"0.3\n"
"0.30\n"
π FORTRAN
π FORTRAN
program FLOATMATHTEST
real(kind=4) :: x4, y4
real(kind=8) :: x8, y8
real(kind=16) :: x16, y16
! REAL literals are single precision, use _8 or _16
! if the literal should be wider.
x4 = .1; x8 = .1_8; x16 = .1_16
y4 = .2; y8 = .2_8; y16 = .2_16
write (*,*) x4 + y4, x8 + y8, x16 + y16
end
0.300000012
0.30000000000000004
0.300000000000000000000000000000000039
π Fish
π Fish
π GHC (Haskell)
π GHC (Haskell)
0.1 + 0.2 :: Double
and
0.1 + 0.2 :: Float
and
0.1 + 0.2 :: Rational
0.30000000000000004
and
0.3
and
3 % 10
If you need real numbers, packages like exact-real give you the correct answer.
π GNU Octave
π GNU Octave
0.1 + 0.2
and
single(0.1)+single(0.2)
and
double(0.1)+double(0.2)
and
0.1+single(0.2)
and
0.1+double(0.2)
and
sprintf('%.17f',0.1+0.2)
0.3
and
0.3
and
0.3
and
0.3
and
0.3
and
0.30000000000000004
π Gforth
π Gforth
0.1e 0.2e f+ f.
and
0.1e 0.2e f+ 0.3e f= .
and
0.3e 0.3e f= .
In Gforth 0 means false and -1 means true. First example print
0.3 but itβs not equal to actuall 0.3.
π Go
π Go
package main
import "fmt"
func main() {
fmt.Println(.1 + .2)
var a float64 = .1
var b float64 = .2
fmt.Println(a + b)
fmt.Printf("%.54f\n", .1 + .2)
}
0.3
0.30000000000000004
0.299999999999999988897769753748434595763683319091796875
Go numeric constants have arbitrary precision.
π Groovy
π Groovy
Literal decimal values in Groovy are instances of java.math.BigDecimal.
π Guile
π Guile
(+ 0.1 0.2)
and
(+ 1/10 2/10)
0.30000000000000004
and
3/10
π Hugs (Haskell)
π Hugs (Haskell)
π Io
π Io
π Java
π Java
System.out.println(.1 + .2);
and
System.out.println(.1F + .2F);
0.30000000000000004
and
0.3
Java has built-in support for arbitrary-precision numbers using the BigDecimal class.
π JavaScript
π JavaScript
The decimal.js library provides an arbitrary-precision Decimal type for JavaScript.
π Julia
π Julia
Julia has built-in rational numbers support and also a built-in
arbitrary-precision BigFloat data type. To get the math right, 1//10 +
2//10 returns 3//10.
π K (Kona)
π K (Kona)
π Kotlin
π Kotlin
println(.1 + .2)
and
println(.1F + .2F)
0.30000000000000004
and
0.3
π Lua
π Lua
print(.1 + .2)
and
print(string.format("%0.17f", 0.1 + 0.2))
0.3
and
0.30000000000000004
π MATLAB
π MATLAB
0.1 + 0.2
and
sprintf('%.17f', 0.1 + 0.2)
0.3
and
0.30000000000000004
π MIT/GNU Scheme
π MIT/GNU Scheme
(+ 0.1 0.2)
and
(+ \#e0.1 \#e0.2)
0.30000000000000004
and
3/10
The scheme specification has a concept exactness.
π Mathematica
π Mathematica
Mathematica has a fairly thorough internal mechanism for dealing with numerical precision and supports arbitrary precision.
By default, the inputs 0.1 and 0.2 in the example are taken to have
MachinePrecision. At a common MachinePrecision of 15.9546 digits,
0.1 + 0.2 actually has a [FullForm][4] of 0.30000000000000004, but is
printed as 0.3.
Mathematica supports rational numbers: 1/10 + 2/10 is 3/10 (which has a
FullForm of Rational[3, 10]).
π MySQL
π MySQL
π Nim
π Nim
π Nushell
π Nushell
π OCaml
π OCaml
float = 0.300000000000000044
π Objective-C
π Objective-C
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSLog(@"%.17f\n", .1+.2);
}
return 0;
}
π PHP
π PHP
echo .1 + .2;
and
var_dump(.1 + .2);
and
var_dump(bcadd(.1, .2, 1));
0.3
and
float(0.30000000000000004441)
and
string(3) "0.3"
PHP echo converts 0.30000000000000004441 to a string and shortens it to
β0.3β. To achieve the desired floating-point result, adjust the precision
setting: ini_set("precision", 17).
π Perl
π Perl
perl -E 'say 0.1+0.2'
and
perl -e 'printf q{%.17f}, 0.1+0.2'
and
perl -MMath::BigFloat -E 'say Math::BigFloat->new(q{0.1}) + Math::BigFloat->new(q{0.2})'
0.3
and
0.30000000000000004
and
0.3
The addition of float primitives only appears to print correctly because not all of the 17 digits are printed by default. The core Math::BigFloat allows true arbitrary precision floating point operations by never using numeric primitives.
π PicoLisp
π PicoLisp
[load "frac.min.l"]
[println (+ (/ 1 10) (/ 2 10))]
You must load file βfrac.min.lβ.
π PostgreSQL
π PostgreSQL
SELECT 0.1::float + 0.2::float;
and
SELECT 0.1 + 0.2;
0.30000000000000004
and
0.3
PostgreSQL treats decimal literals as arbitrary precision numbers with fixed point. Explicit type casts are required to get floating-point numbers.
PostgreSQL 11 and earlier outputs 0.3 as a result for query SELECT 0.1::float + 0.2::float;, but the result is rounded only for display, and under the hood it is still good old 0.30000000000000004.
In PostgreSQL 12 default behavior for textual output of floats was changed from more human-readable rounded format to shortest-precise format. Format can be customized by the extra_float_digits configuration parameter.
π Prolog (SWI-Prolog)
π Prolog (SWI-Prolog)
π Pyret
π Pyret
0.1 + 0.2
and
~0.1 + ~0.2
0.3
and
~0.30000000000000004
Pyret has built-in support for both rational numbers and floating points.
Numbers written normally are assumed to be exact. In contrast, RoughNums are
represented by floating points, and are written prefixed with a ~, indicating
that they are not precise answers β the ~ is meant to visually evoke
hand-waving. A user who sees a computation produce ~0.30000000000000004 knows
to treat the value with skepticism. RoughNums cannot be compared directly for
equality; they can only be compared up to a given tolerance.
π Python 2
π Python 2
print .1 + .2
and
.1 + .2
and
float(decimal.Decimal(".1") + decimal.Decimal(".2"))
and
float(fractions.Fraction('0.1') + fractions.Fraction('0.2'))
0.3
and
0.30000000000000004
and
0.3
and
0.3
Python 2βs print statement converts 0.30000000000000004 to a string and
shortens it to β0.3β. To achieve the desired floating point result, use
print repr(.1 + .2). This was fixed in Python 3 (see below).
π Python 3
π Python 3
print(.1 + .2)
and
.1 + .2
and
float(decimal.Decimal('.1') + decimal.Decimal('.2'))
and
float(fractions.Fraction('0.1') + fractions.Fraction('0.2'))
0.30000000000000004
and
0.30000000000000004
and
0.3
and
0.3
Python (both 2 and 3) supports decimal arithmetic with the decimal module, and true rational numbers with the fractions module.
π R
π R
print(.1 + .2)
and
print(.1 + .2, digits=18)
0.3
and
0.30000000000000004
π Racket (PLT Scheme)
π Racket (PLT Scheme)
(+ .1 .2)
and
(+ 1/10 2/10)
0.30000000000000004
and
3/10
π Raku
π Raku
raku -e 'say 0.1 + 0.2'
and
raku -e 'say (0.1 + 0.2).fmt(\"%.17f\")'
and
raku -e 'say 1/10 + 2/10'
and
raku -e 'say 0.1e0 + 0.2e0'
0.3
and
0.30000000000000000
and
0.3
and
0.30000000000000004
Raku uses rationals by default, so .1 is stored something like {
numerator => 1, denominator => 10 }. To actually trigger the behavior, you must
force the numbers to be of type Num (double in C terms) and use the base
function instead of the sprintf or fmt functions (since those functions have
a bug that limits the precision of the output).
π Regina REXX
π Regina REXX
π Ruby
π Ruby
puts 0.1 + 0.2
and
puts 1/10r + 2/10r
0.30000000000000004
and
3/10
Ruby supports rational numbers in syntax with version 2.1 and newer directly. For older versions use Rational. Ruby also has a library specifically for decimals: BigDecimal.
π Rust
π Rust
use num::rational::Ratio;
fn main() {
println!("{}", 0.1 + 0.2);
println!("{}", 0.1_f32 + 0.2_f32);
println!("1/10 + 2/10 = {}", Ratio::new(1, 10) + Ratio::new(2, 10));
}
0.30000000000000004
0.3
1/10 + 2/10 = 3/10
Rust has rational number support from the num crate.
π SageMath
π SageMath
.1 + .2
and
RDF(.1) + RDF(.2)
and
RBF('.1') + RBF('.2')
and
QQ('1/10') + QQ('2/10')
0.3
and
0.30000000000000004
and
["0.300000000000000 +/- 1.64e-16"]
and
3/10
SageMath supports various fields for arithmetic: Arbitrary Precision Real Numbers, RealDoubleField, Ball Arithmetic, Rational Numbers, etc.
π Scala
π Scala
scala -e 'println(0.1 + 0.2)'
and
scala -e 'println(0.1F + 0.2F)'
and
scala -e 'println(BigDecimal(\"0.1\") + BigDecimal(\"0.2\"))'
0.30000000000000004
and
0.3
and
0.3
π Smalltalk
π Smalltalk
(1/10) + (2/10).
and
0.1 + 0.2.
and
0.1s17 + 0.2s17.
(3/10)
and
0.30000000000000004
and
0.30000000000000000s17
Smalltalk uses fractions by default in most operations; in
fact, standard division results in fractions, not floating
point numbers. Squeak and similar Smalltalks provide βscaled
decimalsβ that allow fixed-point real numbers (s-suffix
indicating precision places).
π Swift
π Swift
0.1 + 0.2
and
Decimal(0.1) + Decimal(0.2)
0.30000000000000004
and
0.3
Swift supports decimal arithmetic with the Foundation module.
π TCL
π TCL
π Turbo Pascal 7.0
π Turbo Pascal 7.0
π Vala
π Vala
static int main(string[] args) {
stdout.printf("%.17f\n", 0.1 + 0.2);
return 0;
}
π Visual Basic 6
π Visual Basic 6
a# = 0.1 + 0.2: b# = 0.3
Debug.Print Format(a - b, "0." & String(16, "0"))
Debug.Print a = b
Appending the identifier type character # to any identifier forces it to
Double.
π WebAssembly (WAST)
π WebAssembly (WAST)
(func $add_f32 (result f32)
f32.const 0.1
f32.const 0.2
f32.add)
(export "add_f32" (func $add_f32))
and
(func $add_f64 (result f64)
f64.const 0.1
f64.const 0.2
f64.add)
(export "add_f64" (func $add_f64))
0.30000001192092896
and
0.30000000000000004
π awk
π awk
awk 'BEGIN { print 0.1 + 0.2 }'
π bc
π bc
π dc
π dc
π ivy
π ivy
0.1 + 0.2
and
0.1 + sqrt(0.04)
Ivy is an interpreter for an APL-like language. It uses exact rational arithmetic so it can handle arbitrary precision. When ivy evaluates an irrational function, the result is stored in a high-precision floating-point number (default 256 bits of mantissa).