I'm really confused. My code:
Console.WriteLine(myChanges + " TEN METHOD " + (ten_num * TEN));(This for debug)
if ((myChanges - (ten_num * TEN)) >= 0)
{
}else
print error message
Like myChannges = 0.3 ; TEN = 0.1; ten_num = 3, but when I print (myChanges - (ten_num * TEN))
it equals 5.4411512312578E-17
Why not 0? Any solutions?