我有这个任务,要求我编写一个代码来确定二次方程的根(ax ^ 2 + bx + c = 0)。但我必须使用大学的图书馆(type.lib.Equation;)。
除了有两个根的情况外,我几乎把所有事情弄清楚了。我可以获得第一根,但我仍然在盘旋以获得第二根我的代码到目前为止
import java.util.Scanner;
import java.io.PrintStream;
import type.lib.Equation;
public class Check05A
{
/**
* @param args
*/
public static void main(String[] args)
{
PrintStream output = System.out;
Scanner input = new Scanner(System.in);
output.println("Enter a,b,c pressing ENTER after each... ");
double a = input.nextDouble();
double b = input.nextDouble();
double c = input.nextDouble();
output.print("The equation: ");
Equation x = new Equation(a, b, c);
output.print(x);
int root = x.getRootCount();
if(root == 0)
{
output.println(" has no real roots.");
}
if(root == 1)
{
double r1 = x.getRoot(root);
output.println(" has the single root: " + r1);
}
if(root == 2)
{
double r1 = x.getRoot(root);
double r2 = -x.getRoot(root);
output.println(" has the two roots: " + r2 + " and " + r1);
}
if(root == -1)
{
output.println("\nis an identity - any value is a root.");
}
}
}
例如1,2,-4应输出为:
“有两个根:-3.23606797749979和1.2360679774997898”
答案 0 :(得分:0)
你只是将负号添加到root 1。
情况并非总是如此。
查找寻找二次方程根的公式:
x=\frac{-b \pm \sqrt {b^2-4ac}}{2a}.
并在函数x.getRoot()内部,返回数组内的两个值。