编程语言
首页 > 编程语言> > 【C#学习】笔记(1):Math类之科学计算

【C#学习】笔记(1):Math类之科学计算

作者:互联网

用Math类进行一些简单的科学计算,包括幂数,指数,对数等的计算

命名空间using System

double m, n;
m = Math.Exp(0.5); //自然对数e的0.5次方
n = Math.Exp(30); //自然对数e的30次方
n = Math.Log(3); //以e为底,3的对数
n = Math.Log(125, 5);//以5为底,125的对数
n = Math.Log10(1000);//以10为底,1000的对数
n = Math.Pow(8, 2.5);//8的2.5次方

n = Math.pow(10, -1);//10de -1次方
n = 1.34e-3; //科学计数法,表示数字

Math类的官方说明:https://docs.microsoft.com/zh-cn/dotnet/api/system.math?view=netframework-4.7.2

标签:Log,C#,科学计算,自然对数,对数,次方,为底,Math
来源: https://www.cnblogs.com/RicardoIsLearning/p/12111327.html