Advertisement Remove all ads
Advertisement Remove all ads
Advertisement Remove all ads
Short Note
Write the specification of an algorithm hypotenuse whose inputs are the lengths of the two shorter sides of a right-angled triangle, and the output is the length of the third side.
Advertisement Remove all ads
Solution
- hypotenuse (a, b)
- – – inputs: a, b are real numbers, a > 0, b > 0
- – – outputs: c2 = a2 + b2 wrhere c is real number, c > 0
Concept: Algorithm Design Techniques
Is there an error in this question or solution?