Search Tutorials
I chose use the Newtonian Method and made the following function: Comment: ---------------------------------------------- Comment: Newton's Method for Finding Square Root Comment: ---------------------------------------------- Set Variable: "n" = 1 Set Variable: "counter" = 0 Loop While (counter<iterations) Set Variable: "n" = n - ((n*n - input) / (2*n)) Set Variable: "counter" = counter+1 End Loop Set Variable: "/:output" = n
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|