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

var number = 8;
var power = 3;
var result = Math.pow(number, power);
//result is 512.0

System.out.println(result);