Showing posts with label Square Root of Number. Show all posts
Showing posts with label Square Root of Number. Show all posts

Sunday, 15 January 2012

Program To Find Square Root of Number In C++

#include<iostream.h>
#include<conio.h>
#include<math.h>
main()
{
clrscr();
float x,y;
cout<<"Enter number";
cin>>x;
cout<<y;
getch();
}