Assignment 1 - Easy Output
due Monday, 9/30 8:30 am
The purpose of this assignment is to get you started using a
compiler,
reading and following assignment specifications.
Write a C++ program to print out some information about
yourself for the instructor. Your program should consist of a main()
function with a bunch of cout statements that provide the
information requested. Keep your responses short, one line each.
- On the first three lines, print your name, email address,
and compiler that you are using for this assignment
- Print a blank line after
each one of the following
responses.
- The fourth line should identify how you spend most of your
time. For example, "I am a full-time student" or "I work full time" or
"I have two children and a spouse", etc.
- The fifth line should identify your college plans and/or
college major. For example, "Working toward BS in computer science",
"Just taking one class", "Plan to transfer to San Jose State", etc.
- The sixth line should describe your job, if your are
working, otherwise, state that you are not working.
- The seventh line should state how many units you are taking
this quarter.
- The eighth line should list other classes you are taking
this quarter.
- The ninth line should describe other programming
experience you've had. Name programming languages, if relevant.
- The tenth line should name the C++ compiler that you plan
to
use for the class.
- The eleventh line should state why you are taking this
class.
- The twelfth line should state what you hope to get out of
this class (don't say an "A").
- The thirteenth line should identify your favorite hobby.
- The
fourteenth line should state something interesting about yourself.
- The last line should identify your preferred name or
nickname.
Your output should look something like the following:
John Doe
joe-doe@gmail.com
Code::Blocks on a PC
I am a part-time student, I work part-time, and I am married and have one child.
I am taking only this class as toward a possible occupational goal.
I am working part-time (15-25) hours per week at Costco, stocking shelves.
I am taking 6 units this quarter.
I am not taking any other classes this quarter.
I do not have any programming experience.
I plan to use the gnu compiler on linux.
I am taking the class to learn programming for a future job.
I hope to get a better understanding of programming to help me decide if I want to work in this field.
My favorite hobby is hiking.
I have 6 grandchildren and a dog.
My nickname is Nerd.
Make sure you email only the source code.
This assignment will mostly be graded on following instructions.
The instructor will compile and run your program.