Program to find the square root of a number using Newton Raphson Method.

Rajat Jadam
1 min readFeb 9, 2020

#include<iostream>
using namespace std;
float absolute(float s){
if(s<0){
s=-s;
}
return s;
}
float sqrt(float n){
int difference=0.0001;
int guess=1;
while(absolute(guess*guess-n)>difference){
guess=(n/guess+guess)/2;
}
return guess;
}
int main(){
int number;
float root;
cout<<”Enter the number of N:”;
cin>>number;
root=sqrt(number);
cout<<”\nRoot : “<<root;
return 0;
}

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

No responses yet

Write a response