So, I have two double variables, and I want to compare them till 3 decimal places. So, for variables (for example):
double x = 0.695999;
double y = 0.695111;
if I check for (x==y), it should return true (since both are equal till 3 decimal places). Thanks!