文件名称:8.10
- 所属分类:
- JSP源码/Java
- 资源属性:
- [Java] [源码]
- 上传时间:
- 2013-05-04
- 文件大小:
- 2kb
- 下载次数:
- 0次
- 提 供 者:
- 丁**
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
为二次方程式ax2+bx+c=0设计一个名为QuadraticEquation的类。这个类包括:
代表三个系数的私有数据域a、b、c。
一个参数为a、b、c的构造方法。
a、b、c的三个get方法。
一个名为getDiscriminant()的方法返回判别式,b2-4ac。
一个名为getRoot1()和getRoot2()的方法返回等式的两个根。
这些方法只有在判别式为非负数时才有用。如果判别式为负,方法返回0。
画出该类的UML图。实现这个类。编写一个测试程序,提示用户输入a、b、c的值,然后显示判别式的结果。如果判别式为正数,显示两个根;如果判别式为0,显示一个根;否则,显示“The equation has no roots”。-The design of a class named QuadraticEquation to two times ax2+bx+c=0 equation. This class includes:
Private data represent three coefficients a, B, C.
A parameter for the construction method of a, B, C.
A, B, C three get method.
A getDiscriminant () method returns the discriminant, b2-4ac.
A getRoot1 () and getRoot2 (two) root method returns.
These methods only in discriminant non-negative number is only useful for. If the discriminant is negative, the method returns 0.
To draw the UML chart. The implementation of this class. Write a test program, prompts the user to input a, B, C value, and then display the results of the discriminant. If the discriminant is positive, showing two root if the discriminant is 0, showing a root otherwise, The equation has no roots "".
代表三个系数的私有数据域a、b、c。
一个参数为a、b、c的构造方法。
a、b、c的三个get方法。
一个名为getDiscriminant()的方法返回判别式,b2-4ac。
一个名为getRoot1()和getRoot2()的方法返回等式的两个根。
这些方法只有在判别式为非负数时才有用。如果判别式为负,方法返回0。
画出该类的UML图。实现这个类。编写一个测试程序,提示用户输入a、b、c的值,然后显示判别式的结果。如果判别式为正数,显示两个根;如果判别式为0,显示一个根;否则,显示“The equation has no roots”。-The design of a class named QuadraticEquation to two times ax2+bx+c=0 equation. This class includes:
Private data represent three coefficients a, B, C.
A parameter for the construction method of a, B, C.
A, B, C three get method.
A getDiscriminant () method returns the discriminant, b2-4ac.
A getRoot1 () and getRoot2 (two) root method returns.
These methods only in discriminant non-negative number is only useful for. If the discriminant is negative, the method returns 0.
To draw the UML chart. The implementation of this class. Write a test program, prompts the user to input a, B, C value, and then display the results of the discriminant. If the discriminant is positive, showing two root if the discriminant is 0, showing a root otherwise, The equation has no roots "".
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Third.class
Third.java