Question: Develop a program that displays the following information to the console, each piece of information on a separate line: a. Displays stars (20 stars) b.

Develop a program that displays the following information to the console, each piece of information on a separate line: a. Displays stars (20 stars) b. Displays details about your class c. Displays your name d. Displays your major e. Displays a personal statement of your choice f. Displays date g. Displays stars (20 stars) See the sample output shown below to assure your output has the same format. General Requirements: Name your source file FirstInitialLastName_CW_[classwork #].cpp Include the following in your code in C++ source .cpp: o Program Header: All programming projects source code need to have one block comment at the top of the program containing the course name, CRN, the project number, your name, project description, and the due date. o Provide any additional comments as necessary to clarify the program. Following is a template of the required program header: /* * Class: CMSC140 CRN * Instructor: * Project * Description: (Give a brief description for Project) * Due Date: * I pledge that I have completed the programming assignment independently. I have not copied the code from a student or any source. I have not given my code to any student. Print your Name here: __________ */ o Indentation: It must be consistent throughout the program and must reflect the control structure. o Proper naming conventions: Variable and method names need to be descriptive to show the role of the variable or method. Avoid single letter names. Constant names should be all upper case, variable names should use camel case (i.e. start with lower case, with subsequent words starting with upper case: hoursWorked for example) or underscores to separate words (i.e. items_ordered).

o Comments: If your variable/constant names are not descriptive to show the role of the variable or method, add comment to variables, formulas, or any part of the program with the purpose of making the source code easier to understand.

Submit: C++ file (source code): FirstInitialLastName_CW_1.cpp o You should submit only .cpp, do NOT submit .sln A document named FirstInitialLastName_CW_1.docx/doc/pdf which includes a screenshot of your output.

Example output:

********************

Hello CMSC140 CRN 20433 class !

My name is First Name Last Name

My major is computer science.

Nice to see you!

Today is September 1st.

********************

(no space between each line in the output )

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!