BT编程语言文档
log10
返回指定数字的以10为底的对数语法 math.log10(x: Int|Float)
x:必填,接受一个大于0的数字
// 返回:1 math.log10(10) // 返回:2 math.log10(100) // 返回:0 math.log10(1)语法 math.log10(x: Int|Float)
x:必填,接受一个大于0的数字
// 返回:1 math.log10(10) // 返回:2 math.log10(100) // 返回:0 math.log10(1)