Latest Revision: February 7, 2012

Directions for Lab #1

Learning The Game, by Buddy Holly ('the apartment demo tapes')

Do all the steps described here.

The goal of this exercise is to examine various components of a program. We make additions and changes to the program and observe the effects of the changes.

Perform all the steps and make notes on what happens. You will have to perform the same kinds of steps many times again during the semester. Raise your hand if you need help with any of the steps.

Individual steps

  1. Save a copy of the file lab01.cpp.html which is available here. Save it as a file in your home directory. Give the file this name: lab01.cpp. Be sure to give it exactly that name -- it's important. (In "lab01" the characters "01" are the digits for zero and one.) To make a copy of the file you just display it in the web browser, copy it to the clipboard, paste it into an editor window, and then save the file.

  2. Compile, link, and execute lab01.cpp. For help with this step you may refer to the example commands and discussion under "Compiling and Linking" and "Checking for Errors and Executing the Program" in the "Hello World!" assignment.

  3. The comment:

    // Program to print song lyrics

    at the beginning of your program is called a program header comment. Add your name(s) and the date to that header comment and re-format it like this header comment is formatted:
    
    /* 
       Program to print song lyrics
       Programmers: Billy Barrow & Polly Parker
              Date: May 22, 1934
    */ 
    Please Note: I'm asking that you duplicate the form above, but use your real name(s) and the actual date.

    Next, re-run the program -- in other words:


    Open a new editor file for your notes and type the two questions above, and the answers, in that note file. (You will have to turn in a copy of your note file as part of this assignment.)

  4. Change the first line of the header comment so it says the following:
    Program to print song lyrics "Learning The Game"
    Re-run the program (as defined above). Did the output change? Why or why not? Like you did before, put the two questions and your answers in your note file.

  5. In the first output statement, change
    "Cans that are shaken and faces get hacked,\n" 
    to
    "Hearts that are broken and love that's untrue,\n"
    In the second output statement, change
    "That's about learning to shave." 
    to
    "These go with learning the game."
    In the third output statement, change
    "When you remove it, it only grows back,\n" 
    to
    "When you love her and she doesn't love you,\n"
    In the fourth output statement, change
    "That's about learning to shave." 
    to
    "You're only learning the game."
    Re-run the program. Did the output change? How? Like you did before, put the two questions and your answers in your note file.

  6. Add another output statement at the begining of main that displays the title:
    Learning The Game
    Make sure to indent the output statement properly - like the lines of code that are already in the program.

    Write the output statement so that a few blank spaces will be printed before the title, and a blank line before the words of the song. Re-run the program to make sure your changes do what they are supposed to do.

  7. Add other output statements so that when you run the program the display will be:
              Learning The Game
    
    Hearts that are broken and love that's untrue,
    These go with learning the game.
    When you love her and she doesn't love you,
    You're only learning the game.
    
    As you are formatting your program statements, continue to preserve the proper indentation pattern. Also, keep in mind this piece of advice from our text: "You should not break a quoted string across two lines ... ."

    For example, you should not write a statement this way:

    cout << "Hearts that are
    broken and love that's untrue,\n" ;

    Because it would break the quoted string "Hearts that are broken and love that's untrue,\n" across two lines in the C++ program.

  8. Add more output statements to display the remaining verses, separated as shown by blank lines:
    When she says that you're the only one she'll ever love,
    Then you find that you are not the one she's thinking of,
    Feeling so sad and you're all alone and blue,
    That's when you're learning the game.
    
    When she says that you're the only one she'll ever love,
    Then you find that you are not the one she's thinking of,
    Feeling so sad and you're all alone and blue,
    That's when you're learning the game.
    
    That's when you're learning the game.
    
    (Notice that you can save a lot of time by doing some copy/paste operations.)

  9. Re-run the program. The output should look like this:
              Learning The Game
    
    Hearts that are broken and love that's untrue,
    These go with learning the game.
    When you love her and she doesn't love you,
    You're only learning the game.
    
    When she says that you're the only one she'll ever love,
    Then you find that you are not the one she's thinking of,
    Feeling so sad and you're all alone and blue,
    That's when you're learning the game.
    
    When she says that you're the only one she'll ever love,
    Then you find that you are not the one she's thinking of,
    Feeling so sad and you're all alone and blue,
    That's when you're learning the game.
    
    That's when you're learning the game.
    
    The output must include a blank line before the title, and a blank line after the last line of text. If necessary debug the program until it is working properly. Print the code of the program (this is called a listing) with the command:
    lp lab01.cpp 
    Above,
    Next make a script of a run of the program. Make the script in the manner you did in the step entitled "Making a Record of a Program Run" in the "Hello World!" assignment.

    Remember to perform the steps to filter the "weird" characters out of the script. The procedure for filtering a script is described in the directions for the "Hello World!" assignment.

    Print the script with an "lp" command similar to the one illustrated above. (It's an exercise for you to figure out the exact form the command should have.)

    Also print a copy of your lab notes with an "lp" command. (Figure out the exact form the command should have.)

    Retrieve your printouts from the printer. To avoid damaging the printer, be especially careful to read and follow the directions on the printer!

    Write the names of both (all) lab team members on each printout. Bring the printouts to me on the due date. Check the class schedule for the due date.