Viết chương trình tính căn bậc 2

Các bước thực hiện:

1. Nhập vào 1 số thực bất kỳ

2. Tính căn bậc 2 sử dụng hàm sqrt (nằm trong Math.h)

3. In ra kết quả

Code tham khảo:

#include <stdio.h>
#include <math.h>

int main()
{
double number, root;

//1. Input a number from user
printf("Enter any number to find square root:");
scanf("%lf", &number);

//2. Calculate square root of number
root = sqrt(number);

//3. Print the square root
printf("Square root of %.2lf = %.2lf", number, root);

return 0;
}