当我 运行 这段代码时 return "exit status 143" 在 java

When I run this code it return that "exit status 143" in java

当我 运行 这个代码 return "exit status 143" 在 java 时,我不知道那里出了什么问题,希望有人能帮我解决这个问题问题。

class Main {
    static double diff(double y, double x, double d){
     if((y*y*y)+d>x)
     return ((y*y*y)+d-x);
     else return(x-(y*y*y)+d);
    }

    static double cubicRoot(double x, double d){
      double start=0 , end=x;
      double e = 0.01;
      while(true){
        double y=(start+end)/2;
        double error = diff(x,y,d);
        if (error <= e)
        return y;
        if(y*y*y+d>x)
        end =y;
        else 
        start =y;
      }
    }

      public static void main(String[] args) {

        double x =10;
        double d =0.1;
        System.out.println("root y is:" + cubicRoot(x,d));

      }
    }

退出代码143对应SIGTERM,这是你运行kill时默认发出的信号。

您或 OS 终止了进程吗?是你最终杀死的死循环吗?