您好,我对编码相当陌生,不明白我必须完成的所需任务。如何通过添加 main 方法来运行以下代码以确保其正常工作?答案和文件将非常有帮助,谢谢。public static boolean approxEqual (double x, double y){ //Judge where two numbers are close enough (equal) final double EPSILON = 1E-10; if (Math.abs(x-y)<EPSILON) { return(true); } return(false);}
1 回答
万千封印
TA贡献1891条经验 获得超3个赞
您可以声明一个类并向其添加 main 方法,如下所示
public class Sol {
public static void main(String[] args) {
Sol.approxEqual(1.0,1.2)
}
public static boolean approxEqual (double x, double y)
{
//Judge where two numbers are close enough (equal)
final double EPSILON = 1E-10;
if (Math.abs(x-y)<EPSILON)
{
return(true);
}
return(false);
}
}
添加回答
举报
0/150
提交
取消