在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
类中的所有方法都是静态的,因此你可以直接通过类名调用它们,而无需创建类的实例。