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


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


在C#中,MathF.Pow(Single,Single)是MathF類方法。此方法用於計算將數字提高到其他數字的乘方。

用法: public static float Pow (float x, float y);

參數:
x:它是一個單精度浮點數,將被提高為冪,並且此參數的類型為System.Single。
y:它是一個單精度浮點數,它指定冪或指數,並且此參數的類型為單係統


返回類型:該函數返回加到冪的基數。此方法的返回類型為System.Single

例:

// C# program to illustrate the 
// MathF.Pow(Single, Single) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Find power using MathF.Pow 
        // 8 is base and 4 is power or 
        // index or exponent of a number 
        float pow_ab = MathF.Pow(8f, 4f); 
  
        // Print the result 
        Console.WriteLine(pow_ab); 
  
        // 7.5 is base and 2 is power or 
        // index or exponent of a number 
        float pow_tt = MathF.Pow(7.5f, 2f); 
  
        // Print the result 
        Console.WriteLine(pow_tt); 
  
        // 1234 is base and 7 is power or 
        // index or exponent of a number 
        float pow_t = MathF.Pow(1234f, 7f); 
  
        // Print the result 
        Console.WriteLine(pow_t); 
    } 
}
輸出:
4096
56.25
4.357186E+21


相關用法


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