Data Structure Sorusu

deejay
08-10-2006, 16:18   |  #1  
OP Yeni Üye
Teşekkür Sayısı: 0
25 mesaj
Kayıt Tarihi:Kayıt: Şub 2006

Bilgisayar Müh.okuyorum 2. sınıftayım bi sorum var teşekkürler..

Write a C program in which you will use a recursive function to calculate the square root of a number using Newton's method given below:

                           
                         ans           if|ans*ans-n|<=tol

squareRoot(num,ans,tol)=

                         squareRoot(num,(ans*ans+num)/
                         (2*ans),tol) otherwise

Note:In the formula tol is an abbreviation for tolerance.
Test your program with:squareRoot(5,2,0.01)