반응형
#include <math.h> double sin(double x); double tan(double x); |
sin 함수는 사인(sine)값을 계산합니다. 각도는 라디안으로 표시합니다.
tan 함수는 탄젠트 값을 계산합니다. 각도는 라디안으로 표시합니다.
참고: cos, sin, tan, acos, asin, atan
예제: sin(x)
#include <stdio.h>
#include <math.h>
int main()
{
double x;
printf("x\tsin(x)\n");
for (x = 0; x <= 1.0; x += 0.1)
printf("%.1f\t%f\n", x, sin(x));
return 0;
}
예제: tan(x)
#include <stdio.h>
#include <math.h>
int main()
{
double x;
printf("x\ttan(x)\n");
for (x = 0; x <= 1.0; x += 0.1)
printf("%.1f\t%f\n", x, tan(x));
return 0;
}
예제: cos(x)
#include <stdio.h>
#include <math.h>
int main()
{
double x;
printf("x\tcos(x)\n");
for (x = 0; x <= 1.0; x += 0.1)
printf("%.1f\t%f\n", x, cos(x));
return 0;
}
반응형
'C_C++ > C_라이브러리_함수' 카테고리의 다른 글
(C언어) strcat: 문자열을 추가한다 (0) | 2023.02.28 |
---|---|
(C언어) sprintf: 문자열에 서식이 지정된 데이터를 저장한다 (0) | 2023.02.28 |
(C언어) scanf: 표준 입력 스트림에서 형식이 지정된 데이터를 읽는다 (0) | 2023.02.27 |
(C언어) rewind: 파일 포인터의 위치를 시작 부분으로 변경한다 (0) | 2023.02.27 |
(C언어) rename: 파일명을 변경한다 (0) | 2023.02.27 |