当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Math Acos()用法及代码示例


在这里,我们将了解Math 类的Acos() 方法。此方法用于返回一个角度,其余弦是以弧度为单位的指定数字。

用法:

    double Math.Acos(double D);

参数:

  • D:双数;它必须介于 -1 到 1 之间。

返回值:

它返回一个角度,其余弦是以弧度为单位的指定数字。

程序:

下面给出了演示使用Math 类的Acos() 方法的源代码。给定的程序已成功编译并执行。

using System;

class Sample
{
    //Entry point of Program
    static public void Main()
    {
        double Cosine = 0.0;
        
        Cosine = Math.Acos(0.7);

        System.Console.WriteLine("Result is:"+Cosine);
    }
}

输出:

Result is:0.795398830184144
Press any key to continue . . .



相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the use of Acos() method of Math class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。