KaiquanMah/TurkuBasicOOPinJava
0
1See the documentation for Java's Math class:2https://docs.oracle.com/en/java/javase/11/docs/api/index.html3Match the method and its meaning!4 5 6abs7exp8log9floor10max11 12signum - -1, 0, 1 based on the 'sign' eg for neg/0/pos respectively13negateExact - returns the negation. eg 12 -> -12. -3 -> 314 15https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Math.html16 17 18 19 20 