CoolFace
Apppublic

KaiquanMah/TurkuBasicOOPinJava

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
15b. Math-class methods20 linesDownload Raw Back to Week 3: Objects, files and exceptions
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