C# | Método Math.Tan()

Math.Tan() es un método de clase Math incorporado que devuelve la tangente de un argumento de valor doble dado (ángulo especificado).

Sintaxis:

public static double Tan(double num)

Parámetro:

num: Es el ángulo (medido en radianes) cuya tangente se va a devolver y el tipo de este parámetro es System.Double .

Valor devuelto: Devuelve la tangente de num de tipo System.Double . Si num es igual a NegativeInfinity, PositiveInfinity o NaN , este método devuelve NaN .

A continuación se muestran los programas para ilustrar el método Math.Tan().

Programa 1: Para mostrar el funcionamiento del método Math.Tan().

// C# program to demonstrate working
// Math.Tan() method
using System;
   
class Geeks {
   
    // Main Method
    public static void Main(String []args)
    {
        double a = 12;
           
        // converting value to radians
        double b = (a * (Math.PI)) / 180;
   
        // using method and displaying result
        Console.WriteLine(Math.Tan(b));
        a = 63;
           
        // converting value to radians
        b = (a * (Math.PI)) / 180;
   
        // using method and displaying result
        Console.WriteLine(Math.Tan(b));
        a = 187;
           
        // converting value to radians
        b = (a * (Math.PI)) / 180;
  
        // using method and displaying result
        Console.WriteLine(Math.Tan(b));
        a = 45;
           
        // converting value to radians
        b = (a * (Math.PI)) / 180;
   
        // using method and displaying result
        Console.WriteLine(Math.Tan(b));
    }
}
Producción:

0.212556561670022
1.96261050550515
0.122784560902905
1

 
Programa 2: para mostrar el funcionamiento del método Math.Tan() cuando el argumento es NaN o infinito .

// C# program to demonstrate working
// Math.Tan() method in infinity case
using System;
  
class Geeks {
      
    // Main Method
    public static void Main(String []args)
    {
  
        double positiveInfinity = Double.PositiveInfinity;
                 
        double negativeInfinity = Double.NegativeInfinity;
                 
                 
        double nan = Double.NaN;
        double result;
  
        // Here argument is negative infinity,
        // output will be NaN
         result = Math.Tan(negativeInfinity);
         Console.WriteLine(result);
  
        // Here argument is positive infinity,
        // output will also be NaN
        result = Math.Tan(positiveInfinity);
        Console.WriteLine(result);
  
        // Here argument is NaN, output will be NaN
        result = Math.Tan(nan);
        Console.WriteLine(result);
    }
}
Producción:

NaN
NaN
NaN

Publicación traducida automáticamente

Artículo escrito por Kirti_Mangal 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 *