當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。