Método MathF.Acos() en C# con ejemplos

El método MathF.Acos(Single) se utiliza para devolver el ángulo cuyo coseno se proporciona como argumento de valor único o flotante. Si el argumento es NaN, el resultado será NaN.

Sintaxis: public static float Acos (float x);
Aquí, se necesita un número de punto flotante estándar.

Valor devuelto: Este método devuelve un ángulo θ, medido en radianes, su tipo es System.Single y el valor será menor que Single.MaxValue .

Los siguientes programas ilustrarán el uso del método mencionado anteriormente:

Ejemplo 1:

// C# program to demonstrate the
// MathF.Acos(Single) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring and initializing value
        float value = 0.5f;
  
        // getting absolute angle value in float
        // using Acos() method
        float result = MathF.Acos(value);
  
        // Display the value
        Console.WriteLine("Angle is {0}", result);
    }
}
Producción:

Angle is 1.047198

Ejemplo 2:

// C# program to demonstrate the
// MathF.Acos(Single) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling get() method
        get(0.19f);
        get(Single.NaN);
        get(Single.NegativeInfinity);
        get(Single.PositiveInfinity);
    }
  
    // defining get() method
    public static void get(float value)
    {
  
        // getting absolute angle value in float
        // using Acos() method
        float result = MathF.Acos(value);
  
        // Display the value
        Console.WriteLine("Acos({0}) will be {1}",
                                   value, result);
    }
}
Producción:

Acos(0.19) will be 1.379634
Acos(NaN) will be NaN
Acos(-Infinity) will be NaN
Acos(Infinity) will be NaN

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *