带扫描仪输入的二次公式

时间:2013-04-16 21:26:46

标签: java input java.util.scanner output quadratic

好的,所以我是一个完整的Java菜鸟,我正在尝试为使用扫描仪输入运行二次方程的类创建一个程序。到目前为止,我得到的是:

import java.util.*;

public class QuadraticFormulaSCN {


public static void main(String[]args) {
  System.out.println("insert value for a:");
  Scanner scan1 = new Scanner(System.in);
   double a = scan1.nextDouble();
    System.out.println("insert value for b:");
  Scanner scan2 = new Scanner(System.in);
    double b = scan2.nextDouble();
    System.out.println("insert value for C:");
  Scanner scan3 = new Scanner(System.in);
   double c = scan3.nextDouble();

    double answer =((Math.sqrt(Math.pow(b,2)-(4*a*c))-b)/2);
      double final2 =(-b + Math.sqrt(Math.pow(b,2)-(4*a*c)))/2;
  System.out.println("The x values are:" + answer + final2);
}
}

但是我得到了一个奇怪的输出,特别是NaNaN ...我该怎么做才能解决这个问题?我做错了什么?

5 个答案:

答案 0 :(得分:2)

NaN是计算无效时得到的。例如除以0或取平方根-1。

当我使用a = 1b = 0c = -4测试您的代码时,答案为2.02.0

格式不正确,final2的计算不会被否定。

否则代码是正确的。

为了改善你可以检查判别式是否为负数。

double d = b*b -4 * a * c;
if (d < 0){
   System.out.println("Discriminant < 0, no real solutions" );
   return;
}
double x1 = (-b  -sqrt(d))/(2*a);
double x2 = (-b +sqrt(d))/(2*a);
System.out.format("The roots of your quadratic formula are %5.3f and %5.3f\n",x1,x2);

或者,如果您更喜欢支持来自复杂域的解决方案:

if (d < 0) {
    System.out.println("Discriminant < 0, only imaginary solutions");
    double r = -b / (2 * a);
    double i1 = -sqrt(-d) / (2 / a);
    double i2 = sqrt(-d) / (2 / a);
    System.out.format("The roots of your quadratic formula are (%5.3f + %5.3fi) and (%5.3f + %5.3fi)\n",r, i1, r, i2);
    return;
}

答案 1 :(得分:2)

我回答有点迟,但我纠正了你的问题(在其他答案中有描述),修正了你的一个计算,并清理了你的代码。

import java.util.*;

public class Test {

    public static void main(String[] args)
    {
        Scanner s = new Scanner(System.in);
        System.out.println("Insert value for a: ");
        double a = Double.parseDouble(s.nextLine());
        System.out.println("Insert value for b: ");
        double b = Double.parseDouble(s.nextLine());
        System.out.println("Insert value for c: ");
        double c = Double.parseDouble(s.nextLine());
        s.close();

        double answer1 = (-b + Math.sqrt(Math.pow(b, 2) - (4 * a * c))) / (2 * a);
        double answer2 = (-b - Math.sqrt(Math.pow(b, 2) - (4 * a * c))) / (2 * a);

        if (Double.isNaN(answer1) || Double.isNaN(answer2))
        {
            System.out.println("Answer contains imaginary numbers");
        } else System.out.println("The values are: " + answer1 + ", " + answer2);
    }
}

答案 2 :(得分:1)

您正在获取NaN,因为您试图取负数的平方根。在数学中,除非您允许使用复数,否则不允许使用数学,例如1 +/- 2i

当判别式(平方根中的东西)为负时,这可能发生在二次公式中,例如x^2 + 6*x + 100b^2 - 4ac = 36 - 400 = -364。取负数in Java leads to NaN的平方根。 (不是数字)

要测试NaN,请使用Double.isNaN并正确处理NaN

此外,即使未遇到NaN,您的计算也不正确:

$ java QuadraticFormulaSCN
insert value for a:
1
insert value for b:
5
insert value for C:
6
The x values are:-2.0-2.0

这应该输出2.0和3.0

答案 3 :(得分:0)

您应该只在何时进行计算 判别式等于或大于零

if(((Math.pow(b,2)-(4*a*c))>= 0){ /* Calculation here */ } 
else {/*error message or complex number calculus*/};

答案 4 :(得分:0)

我总是试图做的一件事就是把所有数学都放在适当的括号中,以避免一个太容易的操作顺序错误。 NaN说&#34;不是数字。&#34;如果用户输入的数字无法产生结果,例如尝试获取负数的平方根,您也会收到该消息。另外,作为一个注释,只需在扫描仪上使用a,b和c,就可以节省一些时间。

public class QuadraticFormula{

   public static void main(String[] args){
      java.util.Scanner input = new java.util.Scanner(System.in);
      double a = input.nextDouble();
      double b = input.nextDouble();
      double c = input.nextDouble();

      double quadPos = (-b + Math.sqrt(Math.pow(b,2)-(4*a*c)))/(2*a);
      double quadNeg = (-b - Math.sqrt(Math.pow(b,2)-(4*a*c)))/(2*a);

      System.out.println("-b - = " + quadNeg + "\n-b + = " + quadPos);

      }
   }