JAVA: An Introduction

Math.pow(double x, double y) Math.exp(double x) Math.ceil(double x) Return an integer not less than x Math.floor(double x) Return an integer not greater than x Math.log(double x) (natural log) Math.sqrt(double x) Math.round(float x) Round to nearest int Math.round(double x) Round to nearest long Math.random() A random number between 0.0 and 1.0 ................
................