[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, ..