C 언어 sqrt 함수로 제곱근 구하기
## C 언어 sqrt 함수로 제곱근 구하기
C 언어에서 sqrt 함수는 math.h 헤더 파일에 포함되어 있습니다. 이 함수는 제곱근을 계산하는데 사용됩니다.
// sqrt.c
#include <stdio.h>
#include <math.h>
int main(void)
{
double x = 3.0;
double result = sqrt(x);
printf("%.1f의 제곱근은 %.1f입니다.\n", x, result);
return 0;
}
3.0의 제곱근은 1.7입니다.
Comments
Comments are closed