Question
This is an example of a function where, (in the function) you read in 3 numbers, do a calculation, and return a value Write a
This is an example of a function where, (in the function) you read in 3 numbers, do a calculation, and return a value
Write a C function that will:
- Determine if you have entered a right triangle
- Accept 3 ints (in main)
- Length of side one of the triangle
- Length of side two of the triangle
- Length of side three of the triangle
- returns a bool (true or false) whether the 3 lengths entered determines a right triangle
- the function does not print out the answer, just returns the answer
- answer is printed in main
- the three sides of the triangle are printed in the function
- the length of the sides are not input in any particular order
function header should be
bool determineRightTri()
in the function
- ask for the length of one side of a triangle
- read in this length
- ask for the length of one the second side of a triangle
- read in this length
- ask for the length of one the third side of a triangle
- read in this length
- determine whether this is a right triangle
- return true if you have a right triangle, else false
Output should look like the following
??? length of side 1
??? length of side 2
??? length of side 3
is a right triangle
Or
is not a right triangle
these lines are printed in the function
??? length of side 1
??? length of side 2
??? length of side 3
this is printed in main--using the returned Boolean value
is a right triangle
Or
is not a right triangle
Use the output (cout) manipulators to format the output correctly [setw(?), fixed, right, left, etc]
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