while (Ea0 >= 0.01)&&(Ea0 >= 0.01)||(Sr >= 10^-4)
This loop keeps on going even though the first part
(Ea0 >= 0.01)&&(Ea1 >= 0.01)
is met i.e. Ea0 and Ea1 dipped below 0.01, why is that?
I want it to stop if
(Ea0 >= 0.01)&&(Ea0 >= 0.01)
or
are met! Thanks in advance!