Please run the following code in a script window with the output window open:
int test1 = 138; int test2 = 50; double test3 = test1/test2; pr();pt(\"dp number testx\");pt(numtostring(test3, 54, 50)); return test3;
The answer provided in the script window appears to be correct (2.7600) but the answer shown in the output windows shows the calulated value(2.75999999999999980). Why is the actual calculated value slightly wrong?