Question: C++ Program!! Problem 1: (Hypotenuse Calculations) Define a function hypotenuse that calculates the hypotenuse of a right triangle when the other two sides are given.

C++ Program!!
Problem 1: (Hypotenuse Calculations) Define a function hypotenuse that calculates the hypotenuse of a right triangle when the other two sides are given. The function should take two double arguments and return the hypotenuse as a double. Use this function in a program to determine the hypotenuse for each of the triangles shown below. Use a for loop to determine the hypotenuse for the cases Triangle sidel 3.0 5.0 4.0 12.0 15.0 8.0 Problem 2: (Prime Numbers) An integer is said to be prime if it's divisible by only 1 and itself. For example 2, 3, 5 and 7 are prime, but 4, 6, 8 and 9 are not. a) Write a function PRIME that determines whether a number is prime b) Use this function in a program that determines and prints all the prime numbers between 2 and 1000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
