Problem 14
Write the definition of a function that takes as input the three numbers. The function returns true if the first number to the power of the second number equals the third number; otherwise, it returns false. (Assume that the three numbers are of type double.)
Problem 15
include
Problem 16
include
Problem 17
Write the definition of a function that takes as input three decimal numbers and returns the first number multiplied by the second number to the power of the third number.
Problem 18
Consider the following C++ function: int mystery(int num) { int y = 1; if (num == 0) return 1; else if (num < 0) return -1; else for (int count = 1; count < num; count++) y = y * (num - count); return y; } What is the output of the following statements? a. cout << mystery(6) << endl; b. cout << mystery(0) << endl; c. cout << mystery(-5) << endl; d. cout << mystery(10) << endl;
Problem 19
a. How would you use a return statement in a void function? b. Why would you want to use a return statement in a void function?
Problem 20
Identify the following items in the programming code shown below:
a. Function prototype, function heading, function body, and function
definitions.
b. Function call statements, formal parameters, and actual parameters.
c. Value parameters and reference parameters.
d. Local variables and global variables.
e. Named constants.
#include
Problem 21
a. Explain the difference between an actual and a formal parameter. b. Explain the difference between a value and a reference parameter. c. Explain the difference between a local and a global variable.
Problem 22
include
Problem 23
Write the definition of a void function that takes as input a decimal number and outputs 3 times the value of the decimal number. Format your output to two decimal places.