Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Directions: You are to write a C++ program that meets the instruction requirements below. Deliverables: Your C++ source code file. (The file with the...
Directions: You are to write a C++ program that meets the instruction requirements below.
Deliverables:
- Your C++ source code file. (The file with the .CPP extension). No other files will be accepted.
- A screenshot of your program running.
Program Instructions:
Consider the following program segment:
//include statement(s)
//using namespace statement
int main()
{
//variable declaration
//executable statements
//return statement
}
- Write a C++ statement that includes the header file iostream.
- Write a C++ statement that allows you to use cin, cout, and endl without the prefix std::.
- Write C++ statement(s) that declare the following variables: num1, num2, num3, and average of type int.
- Write C++ statements that store 125 into num1, 28 into num2, and -25 into num3.
- Write a C++ statement that stores the average of num1, num2, and num3, into average.
- Write C++ statement(s) that output the values of num1, num2, num3, and average.
- Compile and run your program.
- Include your name, course as a comment at the top of the program.
- Comment each line of the program explaining what lines does.