Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

예제가 있는 C#의 MathF.Cosh() 메서드

<시간/>

C#의 MathF.Cosh() 메서드는 부동 소수점 값의 쌍곡선 코사인을 반환하는 데 사용됩니다.

구문

다음은 구문입니다 -

public static float Cosh (float val);

위의 Val은 부동 소수점 숫자입니다.

이제 MathF.Cosh() 메서드를 구현하는 예를 살펴보겠습니다. -

using System;
class Demo {
   public static void Main(){
      float val = 45.0f;
      float res = MathF.Cosh(val);
      Console.WriteLine("Cosh = "+res);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Cosh = 1.746714E+19

이제 MathF.Cosh() 메서드를 구현하는 또 다른 예를 살펴보겠습니다. -

using System;
class Demo {
   public static void Main(){
      float val = 90f;
      float res = MathF.Cosh(val);
      Console.WriteLine("Cosh = "+res);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Cosh = Infinity