Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ programming UML chapter 9 *9.6 (Algebra: quadratic equations) Design a class named QuadraticEquation for quadratic equation ax + bx + x = 0. The

C++ programming
UML
chapter 9
image text in transcribed
image text in transcribed
*9.6 (Algebra: quadratic equations) Design a class named QuadraticEquation for quadratic equation ax + bx + x = 0. The class contains: Data fields a, b, and c that represent three coefficients. A constructor for the arguments for a, b, and c. Three get functions for a, b, and c. A function named getDiscriminant that returns the discriminant, which is b2 - 4ac. Programming The functions named getRoot10 and getRoot20 for returning two roots of the equation: -b+ V6 - 4ac -b-V6 - 4ac --and r = - 2a 2a These functions are useful only if the discriminant is nonnegative. Let these func- tions return 0 if the discriminant is negative. Draw the UML diagram for the class. Implement the class. Write a test program that prompts the user to enter values for a, b, and c, and displays the result based on the discriminant. If the discriminant is positive, display the two roots. If the discriminant is 0, display the one root. Otherwise, display "The equation has no real roots

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Systems

Authors: Ramez Elmasri, Shamkant B. Navathe

7th Edition Global Edition

ISBN: 1292097612, 978-1292097619

More Books

Students also viewed these Databases questions

Question

List behaviors to improve effective leadership in meetings

Answered: 1 week ago