java定义一个方法,该方法能找出两个小数中的较小值并返回,在主方法中调用方法验证
时间: 2024-10-17 12:08:05 浏览: 16
在 Java 中,你可以定义一个静态方法(因为不需要依赖于特定的对象实例),名为 `findSmallerDecimal`,它接受两个 `double` 类型作为参数,并返回其中较小的那个。这里是一个简单的实现示例:
```java
public class Main {
public static void main(String[] args) {
double decimal1 = 5.6;
double decimal2 = 7.8;
// 调用 findSmallerDecimal 方法
double smallerDecimal = findSmallerDecimal(decimal1, decimal2);
System.out.println("The smaller decimal value is: " + smallerDecimal);
}
// 定义查找较小值的方法
public static double findSmallerDecimal(double num1, double num2) {
if (num1 < num2) {
return num1;
} else {
return num2;
}
}
}
阅读全文