1----math模块提供很多的数学运算功能;
math.pi 圆周率
math.e 那个自然常熟就是e^x,的这个e
math.ceil(i) 对i向上取整
math.floor(i) 向下取整
math.pow(a,b) 返回a的b次幂
math.sqrt(i) 返回i的平方根