함수명 : sin
헤더 파일 : <math.h>
함수 프로토타입 : double sin(double x);
기능 : 사인 함수
매개변수 : double x 연산의 라디안
반환 값 : 라디안의 사인 값을 반환합니다.
공식: 1°=π/180°라디안
프로그램 예 : 30도 각도의 사인을 구하고 그 결과를 출력
#include<stdio.h>#include<math.h>#definePI3.14159265intmain(void){doubleresult,x=30*PI/180;//30도 각도를 라디안으로 변환 result=sin(x);printf ( Thesin()of%lfis%lfn,x,result);return0;}
실행 결과:
테신()0.523599is0.500000