简单类型 / 数字 / 数学运算

var number = 1000;
var result = Math.log10(number);
//result is 3.0

System.out.println(result);