HELP PLS
Consider the following program segment: Hinclude statement (3) //using namespace statement int main() H/variable declaration 7/executable statements //return statement Write C+ + statements that include the header files iostream and string. Write a C++ statement that allows you to use cin, cout, and endl without the prefix std::. Write C++ statements that declare and initialize the following named constants: SECRET of type int initialized to 11 and RATE of Lype double initialized to 12.50 Write C++ statements that declare the following variables: numl, num2, and newNum of type int; name of type string; and hoursWorked and wages of type double Write C++ statements that prompt the user to input two integers and store the first number in num1 and the second number in num2. Write a C++ statement(s) that outputs the values of num and num2. indicating which is num1 and which is num2. For example, if numl is 8 and num2 is 5, then the output is: The value of num] = 8 and the value of num2 5. Write a statement that multiplies the value of num1 by 2. adds the value of numa to it, and then stores the result in newNum. Then write a c statement that outputs the value of new Num. statement that updates the value of newtum by adding the value of the named constant SEORET to it. Then, write a state- mental outputs the value ol newum with an appropriate message statements that prompt the user to enter a persons last Write C++ statements that prompt the user to enter a person's last name and then store the last name into the variable name. 118 Chapter 2: Basic Elements of C++ 1 Write C++ statements that prompt the user to enter a decimal number between 0 and 70 and then store the number entered into hoursWorked. Write a C++ statement that multiplies the value of the named con- stant RATE with the value of hoursWorked and then stores the result into the variable wages. Write C++ statements that produce the following output: Houtput the rate of the variable Pay Rate: $ Houtput the value the pas Hours Worked: Ifoutput the value of the variable hours ozked Salary: $ Houtput the value than Name: For example, if the value of name is "Rainbow and hoursworked is 45.50, then the output is: Name: Rainbow Pay Rate: $12.50 Hours Worked: 45.50 Salary: $568.75 Write a C+ program that tests each of the cast statement that you wrote in parts a through Place the statements at the appropria ate place in the program segment given at the beginning of this problem lustrun out program Price on the lollowing input data: mum 28 118 Chapter 2: Basic Elements of C++ 1. 1. Write C++ statements that prompt the user to enter a decimal number between 0 and 70 and then store the number entered into hoursWorked. k. Write a C++ statement that multiplies the value of the named con- stant RATE with the value of hoursWorked and then stores the result into the variable wages. Write C++ statements that produce the following output: Name : //output the value of the variable name Pay Rate: $ //output the value of the RATE Hours Worked: //output the value of the variable //hoursworked Salary: $ //output the value of the variable // wages For example, if the value of name is "Rainbow" and hoursWorked is 45.50, then the output is: Name: Rainbow Pay Rate: $12.50 Hours Worked : 45.50 Salary: $568.75 Write a C++ program that tests each of the C++ statements that you wrote in parts a through 1. Place the statements at the appropri- ate place in the C++ program segment given at the beginning of this problem. Test run your program (twice) on the following input data: num 13, num2 = 28; name = "Jacobson"; hoursworked = 48.30. numi 32, num2 = 15; name = "Crawford", hours worked = 58.45