본문 바로가기
프로그래밍/C#

C# 세제곱근 계산하기

by bantomak 2024. 5. 29.

세제곱근 계산하기

수학 관련으로 공부하다보니 제곱근 다음으로 세제곱근도 구해야 하는 순간이 왔다.

C#에서 세제곱근은 Math.Cbrt() 함수를 사용하면 간단하게 구할 수 있다.

 

해당 수식이 참인지 판단해보자.

예제

using System;

public partial class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine($"16의 세제곱근 + 54의 세제곱근 = 250의 세제곱근");
        Console.WriteLine($"{Math.Cbrt(16)} + {Math.Cbrt(54)} = {Math.Cbrt(16) + Math.Cbrt(54)}");
        Console.WriteLine($"250의 세제곱근: {Math.Cbrt(250)}");
    }
}

 

계산 결과 참이다.

 

함께 읽으면 좋은 글

 

C# Math.Sqrt(Double) vs Math.Pow(Double, Double)

Math.Sqrt() 네임스페이스: System 어셈블리: System.Runtime.dll 지정된 숫자의 제곱근을 반환합니다. public static double Sqrt (double d); d Double 제곱근을 구할 숫자 예제 코드 class Program { static void Main(string[] args

jettstream.tistory.com

댓글