[ create a new paste ] login | about

Link: http://codepad.org/tBH9PgJE    [ raw code | output | fork ]

Python, pasted on Apr 12:
1
2
3
4
5
6
7
8
9
10
11
print 1.00000005 + 4.000002232314235325

print 4.000002232314235325 + 1.00000005

print 1.00000005 + 3.43424983047240827 + 4.000002232314235325

print 1.00000005 + 4.000002232314235325 + 3.43424983047240827

print 1.00000005 + (4.000002232314235325 + 3.43424983047240827)

print (1.00000005 + 4.000002232314235325) + 3.43424983047240827


Output:
1
2
3
4
5
6
5.00000228231
5.00000228231
8.43425211279
8.43425211279
8.43425211279
8.43425211279


Create a new paste based on this one


Comments: