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


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


在这里,我们将了解Math 类的Log() 方法。此方法用于获取给定底数的指定数字的对数。这个方法重载了两次。如果我们传递一个参数,那么它将使用以 e 为底数返回给定数字的对数。如果我们传递两个参数,则第一个参数用于数字,第二个参数用于基数。

用法:

double Math.Log(double number);
double Math.Log(double number, double base);

参数:

  • number: 求其对数的数。
  • base: 对数的底。

返回值:

它返回给定数字的对数。

程序:

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

using System;

class Sample
{
    //Entry point of Program
    static public void Main()
    {
        double logarithm1 = 0.0;
        double logarithm2 = 0.0;

        //Here we get logarithm of base e for 90. 
        logarithm1 = Math.Log(90);

        //Here we get logarithm of base 10 for 90.
        logarithm2 = Math.Log(90,10);
        
        Console.WriteLine("Logarithm of Base E: "+logarithm1);
        Console.WriteLine("Logarithm of Base 10:"+logarithm2);
    }
}

输出:

Logarithm of Base E: 4.49980967033027
Logarithm of Base 10:1.95424250943932
Press any key to continue . . .



相关用法


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