1

求解二次方程

到目前为止,我已经写下了以下内容。我不确定如何介绍第二种方法

public static void main(string args[]){

}

public static  double quadraticEquationRoot1(int a, int b, int c) (){

}

if(Math.sqrt(Math.pow(b, 2) - 4*a*c) == 0)
{
    return -b/(2*a);
} else {
    int root1, root2;
    root1 = (-b + Math.sqrt(Math.pow(b, 2) - 4*a*c)) / (2*a);
    root2 = (-b - Math.sqrt(Math.pow(b, 2) - 4*a*c)) / (2*a);
    return Math.max(root1, root2);  
}

}
4

3 回答 3

5

首先,您的代码无法编译——}public static double quadraticEquationRoot1(int a, int b, int c) ().

其次,您不是在寻找正确的输入类型。如果您想要输入 type double,请确保正确声明该方法。还要小心将事物声明int为何时可以是双精度数(例如,root1root2)。

第三,我不知道你为什么有这个if/else块——最好直接跳过它,只使用当前在该else部分中的代码。

最后,解决您最初的问题:只需创建一个单独的方法并使用Math.min()而不是Math.max().

所以,回顾一下代码:

public static void main(string args[]){

}

//Note that the inputs are now declared as doubles.
public static  double quadraticEquationRoot1(double a, double b, double c) (){    
    double root1, root2; //This is now a double, too.
    root1 = (-b + Math.sqrt(Math.pow(b, 2) - 4*a*c)) / (2*a);
    root2 = (-b - Math.sqrt(Math.pow(b, 2) - 4*a*c)) / (2*a);
    return Math.max(root1, root2);  
}

public static double quadraticEquationRoot2(double a, double b, double c) (){    
    //Basically the same as the other method, but use Math.min() instead!
}
于 2013-06-03T00:16:15.983 回答
3

那么你为什么不尝试使用相同的精确算法,然后在你的 return 语句中使用 Math.min 呢?

另外,请注意,您没有在第一个 if 语句中考虑 $b$ 是否为负。换句话说,您只需返回 $-b / 2a$ 但您不检查 $b$ 是否为负数,如果不是,那么这实际上是两个根中较小的一个,而不是较大的一个。 对于那个很抱歉!我误解了发生了什么 xD

于 2013-06-03T00:00:56.530 回答
0
package QuadraticEquation;

import javax.swing.*;

public class QuadraticEquation {
   public static void main(String[] args) {
      String a = JOptionPane.showInputDialog(" Enter operand a :  ");
      double aa = Double.parseDouble(a);
      String b = JOptionPane.showInputDialog(" Enter operand b :  ");
      double bb = Double.parseDouble(b);
      String c = JOptionPane.showInputDialog(" Enter operand c :  ");
      double cc = Double.parseDouble(c);
      double temp = Math.sqrt(bb * bb - 4 * aa * cc);
      double r1 = ( -bb + temp) / (2*aa);
      double r2 = ( -bb -temp) / (2*aa);
      if (temp > 0) {
            JOptionPane.showMessageDialog(null, "the equation has two real roots" +"\n"+" the roots are : "+  r1+" and " +r2);

        }
      else if(temp ==0) {
            JOptionPane.showMessageDialog(null, "the equation has one root"+  "\n"+ " The root is :  " +(-bb /2 * aa));

        }

      else{

            JOptionPane.showMessageDialog(null, "the equation has no real roots !!!");
        }
    }        
}
于 2014-09-06T14:10:54.483 回答