Created
February 26, 2012 06:59
-
-
Save kevinpang/1914606 to your computer and use it in GitHub Desktop.
Bad commenting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
r = n / 2; // Set r to n divided by 2 | |
// Loop while r - (n/r) is greater than t | |
while (abs( r - (n/r) ) > t) { | |
r = 0.5 * ( r + (n/r) ); // Set r to half of r + (n/r) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment