WAP find square root of any number (without using sqrt() )?
Answers were Sorted based on User's Feedback
Answer / bhavya b
square of a no: n is the sum of first n odd no: for eg ..square of 7 is 1+3+5+7+9+11+13=49...
so we can find sqrt(m) by decrementing odd no:s from m upto m become 0 or less..then the no: of odd no:'s decremented will give the sqrt(m).
int sqroot(int m){
int n=0,i=1;
while(m>0){
m=m-i;
i+=2;
n++;
}
return(n);
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / akash dilwaria
#iclude<iostream.h>
#nclude<conio.h>
void main()
{
clrscr();
int n;
float sqrt;
cout<<"\n enter the number";
cin>>n;
sqrt=pow(n,0.5);
cout<<"\n square root of a number is="<<sqrt;
getch();
}
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / avinash
private int sqrt()
{
int n = console.readline();
n = n*n;
return n;
}
| Is This Answer Correct ? | 5 Yes | 11 No |
What is use of overloading?
What is the default size allocated for array in the statement if size not specified " int a[] "
Is data hiding and abstraction same?
i ahve v low % in 12th n BSC which is aroun 50 coz science was imposed on me......nw m doin MCA n my aggregate in above 74%,what shud i say if asked about low previous percentage??????
What is the real time example of encapsulation?
What are virtual classes?
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
what is difference between thread and programme.
What does <> mean pseudocode?
to find out the minimum of two integer number of two different classes using friend function
What are the four main oops concepts?