Question: Write a function that takes inputs int a, int b, and int c, and double: returns the value of ax^2 + bx + c. (Think

Write a function that takes inputs int a, int b, and int c, and double: returns the value of ax^2 + bx + c. (Think of the most appropriate return data type.) Then the main function is going to input a quadratic polynomial, say f(x), and then the polynomial at a certain point. Below is what needs to be seen on the screen. In the first line of the screen, print "Input the coefficient (integers) of quadratic polynomial f". Then the user is going to input three integers, say a, b, c. In the next line, print "The quadratic polynomial is f(x) = ax * x + bx + c". In the next line, print "Enter a point (double)z", followed by a user-input Print "f(z) = XXX", where XXX is the value of f(z)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
