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


C# MathF.Acos()用法及代碼示例


MathF.Acos(Single)方法用於返回以餘弦值作為單個或浮點值參數給出的角度。如果參數為NaN,則結果將為NaN。

用法: public static float Acos (float x);
Here, it takes a standard floating point number.

返回值:此方法返回以弧度為單位的角度θ,其類型為System.Single,其值小於Single.MaxValue。


下麵的程序將說明上述方法的使用:

示例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); 
    } 
}
輸出:
Angle is 1.047198

示例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); 
    } 
}
輸出:
Acos(0.19) will be 1.379634
Acos(NaN) will be NaN
Acos(-Infinity) will be NaN
Acos(Infinity) will be NaN


相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 MathF.Acos() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。