第三章第一题(代数:解一元二次方程)(Algebra: solve quadratic equations)

第三章第一题(代数:解一元二次方程)(Algebra: solve quadratic equations)

  • *3.1(代数:解一元二次方程)可以使用下面的公式求一元二次方程在这里插入图片描述两个根:
    在这里插入图片描述在这里插入图片描述

在这里插入图片描述称作一元二次方程的判别式。如果它是正值,那么一元二次方程就有两个实数根。如果它为0,方程式就只有一个根。如果它是负值,方程式无实数根。
编写程序,提示用户输入a、b和c的值,并且显示基于判别式的结果。如果这个判别式为正,显示两个根。如果判别式为0,显示一个根。否则,显示“The equation has no real roots”(该方程式无实数根)。
注意,可以使用Math.pow(x,0.5) 来计算在这里插入图片描述
下面是一些运行示例:
Enter a, b, c:1.0 3 1

The equation has two roots -0.381966 and -2.61803

Enter a, b, c:1 2.0 1

The equation has one root -1.0

Enter a, b, c:1 2 3

The equation has no real roots

*3.1(Algebra: solve quadratic equations) The two roots of a quadratic equation在这里插入图片描述can be obtained using the following formula:
在这里插入图片描述and在这里插入图片描述
在这里插入图片描述 is called the discriminant of the quadratic equation. If it is positive, the equation has two real roots. If it is zero, the equation has one root. If it is negative, the equation has no real roots.
Note you can use Math.pow(x, 0.5) to compute在这里插入图片描述.
Here are some simple runs:
Enter a, b, c:1.0 3 1

The equation has two roots -0.381966 and -2.61803
Enter a, b, c:1 2.0 1

The equation has one root -1.0

Enter a, b, c:1 2 3

The equation has no real roots

  • 参考代码:
package chapter03;

import java.util.Scanner;

public class Code_01 {
    public static void main(String[] args){
        Scanner input = new Scanner(System.in);
        System.out.print("Enter a,b,c: ");
        double a = input.nextDouble();
        double b = input.nextDouble();
        double c = input.nextDouble();
        double discriminant = b * b - 4 * a * c;
        if (discriminant > 0){
            double answer1 = (-b + Math.pow(discriminant,0.5)) / (2 * a);
            double answer2 = (-b - Math.pow(discriminant,0.5)) / (2 * a);
            System.out.println("The equation has two roots " + answer1 + " and " + answer2);
        }
        else if (discriminant == 0){
            double answer1 = (-b + Math.pow(discriminant,0.5)) / (2 * a);
            System.out.println("The eqution has one root " + answer1);
        }
        else
            System.out.println("The eqution has no real roots");
    }
}

  • 结果显示:
Enter a,b,c: 1 2.0 1
The eqution has one root -1.0

Process finished with exit code 0

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值