Open In App

MathF.Cbrt() Method in C# with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

MathF.Cbrt(Single) Method is used to return the cube root of a floating point value.

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

Return Value: This method returns the cube root of the given value.

Example 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);
    }
}


Output:

Cube root of 27 is 3

Example 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);
    }
}


Output:

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


Last Updated : 28 Oct, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads