반응형

C언어 소스 코드 21

[math.h] tanh, tanhl, tanhf 함수 예제 코드, 쌍곡선 tangent 함수

[math.h] tanh, tanhl, tanhf 함수 예제 코드, 쌍곡선 tangent 함수 쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다. tanh(x) = (e^2x -1)/(e^2x +1) //C언어 표준 라이브러리 함수 가이드//double tanh(double x); 쌍곡선 tangent 함수//float tanhf(float x); 쌍곡선 tangent 함수//long double tanhl(long double x); 쌍곡선 tangent 함수//-5.0에서 5.0까지 쌍곡선 tangent 값 #include #include int main(void){ double x; for (x = 0; x

[math.h] sinh, sinhf, sinhl 함수 예제 코드, 쌍곡선 sine 함수

[math.h] sinh, sinhf, sinhl 함수 예제 코드, 쌍곡선 sine 함수 쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다. sinh(x) = (e^x - e^-x)/2 //C언어 표준 라이브러리 함수 가이드//double sinh(double x); 쌍곡선 sine 함수//float sinhf(float x); 쌍곡선 sine 함수//long double sinhl(long double x); 쌍곡선 sine 함수//-5.0에서 5.0까지 쌍곡선 sine 값 #include #include int main(void){ double x; for (x = 0; x

[math.h] cosh, coshf, coshl 함수 예제 코드, 쌍곡선 cosine 함수

[math.h] cosh, coshf, coshl 함수 예제 코드, 쌍곡선 cosine 함수 쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다. cosh(x) = (e^x + e^-x)/2 //C언어 표준 라이브러리 함수 가이드//double cosh(double x); 쌍곡선 cosine 함수//float coshf(float x); 쌍곡선 cosine 함수//long double coshl(long double x); 쌍곡선 cosine 함수//-5.0에서 5.0까지 쌍곡선 cosine 값 #include #include int main(void){ double x; for (x = 0; x

[math.h] asinh, asinhf, asinhl 함수 사용 예제 코드, 쌍곡선 arc sine 함수

[math.h] asinh, asinhf, asinhl 함수 사용 예제 코드, 쌍곡선 arc sine 함수 쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다. arcsinh(x) = ln(x+root(x^2 + 1) //C언어 표준 라이브러리 함수 가이드//double asinh(double x); 쌍곡선 arc sine 함수//float asinhf(float x); 쌍곡선 arc sine 함수//long double asinhl(long double x); 쌍곡선 arc sine 함수//-5.0에서 5.0까지 쌍곡선 arc sine 값 #include #include int main(void){ double x; for (x = -5.0; x

[math.h] acosh, acoshf, acoshl 함수 사용 예제, 쌍곡선 arc cosine 함수

[math.h] acosh, acoshf, acoshl 함수 사용 예제, 쌍곡선 arc cosine 함수 쌍곡선 함수는 삼각함수 sine, cosine, tangent에서 유추하여 만든 함수입니다. arccosh(x) = ln(x+root(x^2 - 1) , 단 x>= 1 입니다. //C언어 표준 라이브러리 함수 가이드//double acosh(double x); 쌍곡선 arc cosine 함수//float acoshf(float x); 쌍곡선 arc cosine 함수//long double acoshl(long double x); 쌍곡선 arc cosine 함수 #include #include int main(void){ double x; for (x = 1.0; x

[math.h] fmod, fmodf, fmodl 함수 사용 예제 코드, 분자와 분모를 입력받아 몫과 나머지 계산

[math.h] fmod, fmodf, fmodl 함수 사용 예제 코드, 분자와 분모를 입력받아 몫과 나머지 계산 //C언어 표준 라이브러리 함수 가이드//double fmod(double x, double y); 나머지//float fmodf(float x, float y); 나머지//long double fmodl(long double x, long double y); 나머지//분자와 분모를 입력받아 몫과 나머지 계산 #include #include int main(void){ double numerator, denominator; printf("분자와 분모를 입력: "); scanf_s("%lf %lf",&numerator, &denominator); printf("몫: %.lf ",floor(nu..

[math.h] ceil, ceilf, ceill 함수 사용 예제 코드, 소수점 첫번째 자리에서 올림

[math.h] ceil, ceilf, ceill 함수 사용 예제 코드, 소수점 첫번째 자리에서 올림 //C언어 표준 라이브러리 함수 가이드//double ceil(double x); 올림//float ceilf(float x); 올림//long double ceill(long double x); 올림//국어, 영어, 수학 성적을 입력받아 합계, 평균(올림) 계산 #include #include int main(void){ int scores[3],i, sum=0; printf("국어 영어 수학 성적: "); for(i=0;i

[math.h] hypot, hypotf, hypotl 함수 사용 예제 코드, 직각 삼각형의 빗변의 길이 계산

[math.h] hypot, hypotf, hypotl 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 가이드//double hypot(double x, double y); 직각 삼각형의 빗변의 길이 계산//float hypotf(float x, float y); 직각 삼각형의 빗변의 길이 계산//long double hypotl(long double x, long double y); 직각 삼각형의 빗변의 길이 계산//직각 삼각형의 밑변과 높이를 입력받아 빗변의 길이를 계산 #include #include int main(void){ double width, height, hypotenuse ; printf("직각 삼각형의 밑변과 높이를 입력: "); scanf_s("%lf %lf",&width, ..

[math.h] frexp, frexpf, frexpl 함수 사용 예제 코드 , 지수와 가수 계산

[math.h] frexp, frexpf, frexpl 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 가이드//double frexp(double value, int *exp); 지수와 가수 계산//float frexpf(float value, int *exp); 지수와 가수 계산//long double frexpl(long double value, int *exp); 지수와 가수 계산//특정 실수가 x*2^exp 인지 확인 #include #include int main(void){ double value; double exp; float expf; long double expl; int mantissa; value = 1.0; exp = frexp(value, &mantissa); printf..

반응형