using System;
namespace MyCompiler {
class Program {
public static void Main(string[] args) {
Console.WriteLine("digite um numero(double)");
double numero = Convert.ToDouble(Console.ReadLine());
double logaritimo10 = Math.Log10(numero);
Console.WriteLine("log10: " + logaritimo10);
}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: