Necessary objects:
Math.exp(x)
Other than that, there’s something else to help you that you need Java. it
Math.PI // returns PI Math.random(); // returns a random number Math.max(0, 150, 30, 20, -8, -200); // returns 150 Math.min(0, 150, 30, 20, -8, -200); // returns -200 Math.round(4.7); // returns 5 Math.round(4.4); // returns 4
source share