Math, asked by batulkathiriya786, 3 months ago

write a program to calculate the square root of 400​

Answers

Answered by Anonymous
0

Answer:

Program for Square Root in C++

using namespace std;

int main()

float sq,n;

cout<<"Enter any number:";

cin>>n;

sq=sqrt(n);

cout<<"Square root of "<<n<<" is "<<sq;

return 0;

Answered by sony121
0

Step-by-step explanation:

Program for Square Root in C++

using namespace std;

int main()

float sq,n;

cout<<"Enter any number:";

cin>>n;

sq=sqrt(n);

cout<<"Square root of "<<n<<" is "<<sq;

return 0;

Similar questions