Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

In this assignment you will write a small C++ program to a) read the coefficient

ID: 441216 • Letter: I

Question

In this assignment you will write a small C++ program to a) read the coefficients and solve the quadratic equation and b) read a range of x values (xmin, xmax) and make a table like the one shown below. The C++ programs should be submitted as a standard C++ source code file. Also submit a Text/Word/PDF document with instruction to compile/run and use your program as well as the answer to the questions (if any). You can either submit these files separately or zipped together into one file. There are no specific naming conventions. Please note that the computer program should comply with the commenting and formatting rules as has been done in class. For example, there should be a header for the whole program that gives the author

Explanation / Answer

Please rate :) #include #include void main() { float a,b,c; float z; coutb>>c; z=pow(b,2)-(4*a*c); if (a==0) cout