Hi all,
How do i do this:
While this really complex formula is not greater or equal to 10, do this.
I am guessing:
while(! complex formula >= 10)
{do this}
In other words while it is not the case that..... do this....
OR:
while(complexformula !>= 10)
{do this}