Develop a C++ program which uses variables and cin and cout statements to output your name, major, number of credit hours, per credit hour tuition fee, and cost for the semester.
1. Define 2 variables of the appropriate data types and initialize one variable with your name. Use an assignment statement to place your major into the other variable.
2. Variable names must be descriptive.
3. Define variables for “total tuition and fees”, “number of credit hours”, and “cost”, and have the user enter your tuition and credit hours into two of the variables.
4. Calculate your cost for this semester.
5. Use cout to output the values of the variables to the console. Your cout statement MUST use the variables.
6. Output must be labelled and easy to read as shown in the sample output below.
7. Program must be documented with the following:
a. // Name
b. // Date
c. // Program Name