Home »
.Net »
C# Programs
C# program to demonstrate the use of Log10() method of Math class
Here, we are going to demonstrate the use of Log10() method of Math class in C#.Net.
Submitted by Nidhi, on April 24, 2021
Here, we will learn about the Log10() method of Math class. This method is used to get a base 10 logarithm of the specified number.
Syntax:
double Math.Log10(double number);
Parameter(s):
- number: The number whose logarithm is to be found.
Return value:
It returns a base 10 logarithm of the given number.
Program:
The source code to demonstrate the use of Log10() method of Math class is given below. The given program is compiled and executed successfully.
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
double log10 = 0.0;
//Here we get logarithm of base 10 for 90.
log10 = Math.Log10(90);
Console.WriteLine("Logarithm of Base 10: " + log10);
}
}
Output:
Logarithm of Base 10: 1.95424250943932
Press any key to continue . . .
C# Math Class Programs »