When I run this into the compiler:
print (7/3)
print (4/3)
print (7/3-4/3-1)
print ("")
print (5/3)
print (2/3)
print (5/3-2/3-1)
The console outputs:
2.3333333333333335
1.3333333333333333
2.220446049250313e-16
1.6666666666666667
0.6666666666666666
0.0
Why does the compiler round 7/3 to 5 at the 16th digit? Other calculators say 7/3 is just 2.333(repeating 3) Also, why does the compiler round the solution for 5/3 but not 2/3?