當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# MathF.Cbrt()用法及代碼示例


MathF.Cbrt(Single)方法用於返回浮點值的立方根。

用法: public static float Cbrt (float x);
Here, it takes a standard floating point number.

返回值:此方法返回給定值的立方根。


示例1:

// C# program to demonstrate the 
// MathF.Cbrt(Single) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // Declaring and initializing value 
        float value = 27f; 
  
        // getting cube root of value 
        // using Cbrt() method 
        float round = MathF.Cbrt(value); 
  
        // Display the value 
        Console.WriteLine("Cube root of {0} is {1}", 
                                     value, round); 
    } 
}
輸出:
Cube root of 27 is 3

示例2:

// C# program to demonstrate the 
// MathF.Cbrt(Single) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // calling get() method 
        Console.WriteLine("Cube root of given "+ 
                    "numbers are respectively"); 
        get(8f); 
        get(27.8967f); 
        get(64f); 
        get(125.2534f); 
    } 
  
    // defining get() method 
    public static void get(float value) 
    { 
  
        // getting cube root of given value 
        // using Cbrt() method 
        float round = MathF.Cbrt(value); 
  
        // Display the value 
        Console.WriteLine("Cube root of {0} is {1}", 
                                    value, round); 
    } 
}
輸出:
Cube root of given numbers are respectively
Cube root of 8 is 2
Cube root of 27.8967 is 3.03285
Cube root of 64 is 4
Cube root of 125.2534 is 5.003376


相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 MathF.Cbrt() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。