在VB中,以10为底的x的常用对数表达式是______.(1分) A、Log(X) B、Log10(X)C、Log(X) / Log(e) D、Log(X) / Log(10)

来源:学生作业帮助网 编辑:作业帮 时间:2024/06/17 04:49:23
在VB中,以10为底的x的常用对数表达式是______.(1分) A、Log(X) B、Log10(X)C、Log(X) / Log(e) D、Log(X) / Log(10)
xS]OA+BگA<1dlg7S#Z&"iEJ]wgQ㋉dΝ{9sfBd;SF5m'F57Ek4 yT :}ۮ_l,ɖEʏLi2p‰X2k$q}r?$|Lr+y.vdղh͞bߠ}譾6J_^q܈+B3OZہ"y@EHqv֑UJ{7gӬ ^[POƂpݦhnɖmP5;`겤:ւ >QA扡X Y0ٌlxxy`Ǒj??wXK~/ +&8 Xd)Q"9L'nh% OzFp4$Bqb "0aN3\/8@><HXXU%.b|NP$pM"lӿO:D27wx"۰Pu/l~x-?Qr GCC:zCQU۴ *4s-;&PLSL)XRSo@{Fyp7uB'TE

在VB中,以10为底的x的常用对数表达式是______.(1分) A、Log(X) B、Log10(X)C、Log(X) / Log(e) D、Log(X) / Log(10)
在VB中,以10为底的x的常用对数表达式是______.(1分) A、Log(X) B、Log10(X)
C、Log(X) / Log(e) D、Log(X) / Log(10)

在VB中,以10为底的x的常用对数表达式是______.(1分) A、Log(X) B、Log10(X)C、Log(X) / Log(e) D、Log(X) / Log(10)
选择D啦,根据数学对数公式转换一下,然后VB中的Log函数默认是以e为底的
微软官方文档MSDN就是这样说的
Log Function
Returns a Double specifying the natural logarithm of a number.
返回一个自然对数函数的双精度数
The natural logarithm is the logarithm to the base e. The constant e is approximately 2.718282.
自然对数是以 e为底的
You can calculate base-n logarithms for any number x by dividing the natural logarithm of x by the natural logarithm of n as follows:
你可以计算以N为底的对数x通过以下公式
Logn(x) = Log(x) / Log(n)
所以D是绝对正确地!
低调接分,哈哈~
The following example illustrates a custom Function that calculates base-10 logarithms:
Static Function Log10(X)
Log10 = Log(X) / Log(10#)
End Function