Write a Java program that solves a set of quadratic equations as per Requirement #1 (without using global variables), and reads an integer number entered in the command line, as follows:

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Write a Java program that solves a set of quadratic equations as per Requirement #1 (without using global
variables), and reads an integer number entered in the command line, as follows:
> java
program name
input_number
and depending on the value of this number does the following:
1) If the number entered is positive, the program shall solve (running in a loop) as many quadratic
equations of the following form, as the input_number tells:
a
*
x? + b * x+ c= 0
where coefficients a, b and c are double values, entered from the keyboard as per Requirement #3.
2) If the input number entered in the command line is not positive, the program shall print the following
message to the screen and exit:
A positive value shall be entered in the command line.
3) The values of coefficients a, b and c, as listed in Requirement #1, shall be read from the keyboard by
the program with the following message on the screen, each time a new coefficient is needed:
Please enter the next coefficient of a quadratic equation:
4) If the coefficient a is a zero, the program shall display the following message on the screen (first line)
repeating the request for another value of a (second line):
Coefficient a cannot be a
zero.
Enter the correct value.
Please enter the next coefficient of a quadratic equation:
5) When the program solves the quadratic equation (calculates the roots), as per Requirement #1, the
following output shall be displayed on the screen:
<one empty line>
Quadratic equation with the following coefficients
a: <value>;
b: <value>;
c: <value>
has
the following roots: <root1> and <root2>
6) In case the quadratic equation for given coefficients does not have roots, the program shall print the
following message, and continue operation for the next set of coefficients:
<one empty line>
Quadratic equation with the following coefficients:
a: <value>;
b: <value>;
c: <value>
does not have roots.
Transcribed Image Text:Write a Java program that solves a set of quadratic equations as per Requirement #1 (without using global variables), and reads an integer number entered in the command line, as follows: > java program name input_number and depending on the value of this number does the following: 1) If the number entered is positive, the program shall solve (running in a loop) as many quadratic equations of the following form, as the input_number tells: a * x? + b * x+ c= 0 where coefficients a, b and c are double values, entered from the keyboard as per Requirement #3. 2) If the input number entered in the command line is not positive, the program shall print the following message to the screen and exit: A positive value shall be entered in the command line. 3) The values of coefficients a, b and c, as listed in Requirement #1, shall be read from the keyboard by the program with the following message on the screen, each time a new coefficient is needed: Please enter the next coefficient of a quadratic equation: 4) If the coefficient a is a zero, the program shall display the following message on the screen (first line) repeating the request for another value of a (second line): Coefficient a cannot be a zero. Enter the correct value. Please enter the next coefficient of a quadratic equation: 5) When the program solves the quadratic equation (calculates the roots), as per Requirement #1, the following output shall be displayed on the screen: <one empty line> Quadratic equation with the following coefficients a: <value>; b: <value>; c: <value> has the following roots: <root1> and <root2> 6) In case the quadratic equation for given coefficients does not have roots, the program shall print the following message, and continue operation for the next set of coefficients: <one empty line> Quadratic equation with the following coefficients: a: <value>; b: <value>; c: <value> does not have roots.
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education