阅读量:0
在Java中,你可以使用Math
类来调用各种数学函数。Math
类包含了许多静态方法,用于执行基本的数学运算,如加法、减法、乘法、除法、取平方根等。
以下是一些使用Math
类的示例:
- 计算两个数的和:
public class Main { public static void main(String[] args) { double a = 10; double b = 20; double sum = Math.add(a, b); System.out.println("Sum: " + sum); } }
- 计算两个数的差:
public class Main { public static void main(String[] args) { double a = 10; double b = 20; double difference = Math.subtract(a, b); System.out.println("Difference: " + difference); } }
- 计算两个数的乘积:
public class Main { public static void main(String[] args) { double a = 10; double b = 20; double product = Math.multiply(a, b); System.out.println("Product: " + product); } }
- 计算两个数的商:
public class Main { public static void main(String[] args) { double a = 10; double b = 20; double quotient = Math.divide(a, b); System.out.println("Quotient: " + quotient); } }
- 计算一个数的平方根:
public class Main { public static void main(String[] args) { double number = 25; double squareRoot = Math.sqrt(number); System.out.println("Square root of " + number + " is: " + squareRoot); } }
这些示例展示了如何使用Math
类执行基本的数学运算。请注意,Math
类中的所有方法都是静态的,因此你可以直接通过类名调用它们,而无需创建类的实例。