Code:
double total = 0;
double a1 = 28.69;
double a2 = 14.21;
total = a1 + a2;
I builde it in Vs2008,and get the result as:
total = 42.900000000000 006
double total = 0;
double a1 = 28.69;
double a2 = 14.21;
total = a1 + a2;
I builde it in Vs2008,and get the result as:
total = 42.900000000000 006
Comment