Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Input: from the user Output: standard output Write a program that will calculate both roots of a quadratic equation. The program should ask the user
Input: from the user Output: standard output Write a program that will calculate both roots of a quadratic equation. The program should ask the user to input a, b, and c and then write both roots to standard output (the screen). Your program should print the roots ordered from least to greatest. If the quadratic equation has a negative discriminant your program should output "NO REAL ROOTS". If the two roots are the same only report one root. Also report the vertex of the parabola. ax2+bx+c=0 x=2abb24ac Note: Round all output to 2 decimal places. Documentation [edit] Your program must include: - Header Documentation
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