📜  C#| Math.Tan()方法

📅  最后修改于: 2021-05-29 20:25:34             🧑  作者: Mango

Math.Tan()是内置的Math类方法,它返回给定双值参数(指定角度)的切线。

句法:

public static double Tan(double num)

范围:

返回值:返回System.Double类型的num的切线。如果num等于NegativeInfinity,PositiveInfinity或NaN ,则此方法返回NaN

下面是说明Math.Tan()方法的程序。

程序1:演示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));
    }
}
输出:
0.212556561670022
1.96261050550515
0.122784560902905
1

程序2:显示当参数为NaN或infinity时Math.Tan()方法的工作方式。

// 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);
    }
}
输出:
NaN
NaN
NaN