Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a C++ programming code for a non-zero, discuss the roots of the quadratic equation as follows: a) D =0; the equation has a double
Write a C++ programming code for a non-zero, discuss the roots of the quadratic equation as follows:
a) D =0; the equation has a double solution.
x1 = x2 = -b/2a
b) D>0; the question has two different solutions x1 and x2.
x1= (-b-sqrt(D))/2a
x2= (-b+sqrt(D))/2a
c) if D<0; the equation has no real solution
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started