Reference no: EM131092784
To exemplify pointers, we will be doing quadratics. Remember that a quadratic expression is of the form: ax2 + bx + c where a, b, c are constant and a is not 0. You will scan in the values a, b, and c. With these values, you will write three functions:
quadraticFormula
quadraticVertex
quadraticInfo
The first function will preform the quadratic equation to find the roots of the expression. The return value of the function will be an int that signifies how many REAL roots there are. You do not need to worry about imaginary numbers.
The second function is used to find the vertex of the expression. There is no return value for this function. Remember, there is an x and a y component to vertex.
The third function function is to find the directrix and the direction the graph of the function is facing. There is no return value for this function. The direction of the graph will be represented by a char that will either be 'U' for up or 'D' for down.
All of your printing and scanning should be done in main. You are scanning in integers, but you should be holding values in floats because precision is important. When printing the roots, there are three cases. You will have two roots and will print two roots. You will have one root and will print that one. Or you will have no real roots (probably resulting in some weird data in your variables) and will just print "No real roots". You will be using pointers to pass around to functions to hold values that are calculated. Print all floats to 2 decimal places. Scan all of your coefficients on one line separated by spaces.
Sample Output:
Enter coefficents a, b, and c: 3 18 -48
f(x) = 3x^2 + 18x + -48
Roots: 2.00 and -8.00
Vertex: (-3.00, -75.00)
Directrix: y = -75.08
The graph is facing up
Enter coefficents a, b, and c: 2 24 72
f(x) = 2x^2 + 24x + 72
Root: -6.00
Vertex: (-6.00, 0.00)
Directrix: y = -0.12
The graph is facing up
Enter coefficents a, b, and c: 1 4 5
f(x) = 1x^2 + 4x + 5
No real roots
Vertex: (-2.00, 1.00)
Directrix: y = 0.75
The graph is facing up
Enter coefficents a, b, and c: -1 4 5
f(x) = -1x^2 + 4x + 5
Roots: -1.00 and 5.00
Vertex: (2.00, 9.00)
Directrix: y = 9.25
The graph is facing down
Calculate the density of the mixture
: Atmospheric air at a pressure of 760 mm Hg has a temperature of 32oC and a percentage saturation asdetermined from a psychrometric chart of 52%.
|
Find and write out the regression line
: Find and write out the regression line - What is the Coefficient of Determination? What is the Coefficient of Determination adjusted for degrees of freedom?
|
Flavor deterioration of a food product
: Flavor deterioration. The results shown below were obtained in a small-scale experiment to study the relation between 0 F of storage temperature (X) and number of weeks before flavor deterioration of a food product begins to occur (Y).
|
Example of multi domestic strategy
: Which of the following is an example of a multi domestic strategy?
|
Quadratic expression is of the form
: To exemplify pointers, we will be doing quadratics. Remember that a quadratic expression is of the form: ax2 + bx + c where a, b, c are constant and a is not 0. You will scan in the values a, b, and c. With these values, you will write three funct..
|
Technical paper-object-oriented programming
: Technical Paper: Object-oriented Programming (OOP) / Event-Driven Programming (EDP) versus Procedural Programming (PP)
|
Filter the appropriate traffic
: Case Project 4-2: Creating ACLs You have been assigned to create access control lists to filter specific traffic on a Cisco router. Provide the commands needed to filter the appropriate traffic in each of the following ACLs.
|
Determine the rate of heat transfer
: Steam enters a long, horizontal pipe with an inlet diameter of D1 = 12 cm at 1 MPa and 300°C with a velocity of 2 m/s. Farther downstream, the conditions are 800 kPa and 250°C, and the diameter is D2 = 10 cm
|
Tourist in singapore
: Emphasizing both the theoretical and applied aspects planning and development, you will explore conceptual and practice issues facing the public and private sectors when dealing with the Development of tourism.
|