{compute the square root of Num unsing the Newton Raphson approximation}
r : Num / 2;
while ( abs( r - ( Num / r ) ) < Tolerance ) do
r : 0.5 * ( r ( Num / r ) )
Num
1
2 3
1 2
**
get current employee information
update Employee structure
IBM
{compute the square root of Num unsing the Newton Raphson approximation}
r : Num / 2;
while ( abs( r - ( Num / r ) ) < Tolerance ) do
r : 0.5 * ( r ( Num / r ) )
Num
1
2 3
1 2
get current employee information
update Employee structure
IBM