The Math class provides methods for performing basic numeric operations such as square root, cube root, and trigonometric functions.
Source Code
System.out.println(Math.sqrt(64)); // Outputs 8.0
System.out.println(Math.abs(-4.7)); // Outputs 4.7
Utilize the Math class for mathematical calculations to simplify your code and improve readability.