lab03 : more on argc/argv, atoi, fencepost problems, submit.cs

num ready? description submit.cs link
lab03 true more on argc/argv, atoi, fencepost problems, submit.cs https://submit.cs.ucsb.edu/form/project/813/submission

NOTE: This labs adapted from CS16 to CCS 1A

This lab is borrowed from Diba Mirza’s CS16 and adapted for use in CCS CMPTGCS 1A

Please use the page https://submit.cs.ucsb.edu/form/project/813/submission, or the Unix shell commmand listed at that link (e.g. ~submit/submit -p nnn file1 file2 ... filen) to submit your assignment rather than the command listed in the instructions if different.

Introduction

By the time you have completed this lab, you should be able to:

Step by Step Instructions

Step 1: Log on to CSIL and bring up a terminal window.

I hope I can safely assume that you have all gotten a CoE account. If your account is not working, get the attention of the instructor.

Log into your account to make sure it works. As a reminder to get to the terminal go to Application Menu, then System Tools, then Terminal Window.

In the steps below, and in most future labs, you will create files on your own account.

Step 2: Create a new repo, add your partner as collaborator and clone it to your local directory

In lab02, we have done the same thing. So if you don’t know to how to do that, please refer to lab02 for details. The basic steps are as follows:

Step 3: Get the starter code from a local directory

This step is aslo very similar to lab02, first open terminal and go to the directory where you cloned the starter code in lab02 and pull the latest version of the starter code.

NOTE: If you do not have the directory ~/cs16/cs16-sp17-starter-code on your computer, then please visit https://ucsb-cmptgcs-1a-f17.github.io/cs16/lab02/, skip down to step 2, and follow the instructions to do a git clone of the starter code repository before proceeding.

  cd ~/cs16/cs16-sp17-starter-code
  git pull

Copy the code from your starter code directory to your local lab03 repo using the following command, REMEMBER to change the directory name in the commands below to your own directory’s name, in this lab we simply use lab03_agaucho_alily as a example for your local git directory:

  cp ~/cs16/cs16-sp17-starter-code/lab03/* ~/cs16/lab03_agaucho_alily/

After doing this command, if you cd into ~/cs16/lab03_agaucho_alily/ and use the ls command, you should see several .cpp files:

-bash-4.2$ ls
animals01.txt  animals02.txt  countDucks.cpp  sample01.cpp
-bash-4.2$ 

If you don’t see those files, work with your pair partner to go back through the instructions and make sure you didn’t miss a step. If you still have trouble, ask for assistance.

If so, you are ready to move on to the next step.

Step 4: Compile and run the first program for this assignment

The first program we are going to compile and run is one that demonstrates a for loop in C++.

In your lab03 directory, you should have a program called sample01.cpp that we copied in the previous step. Here’s how you can put yourself in that directory (though you should already be there):

-bash-4.2$ cd ~/cs16/lab03_agaucho_alily/
-bash-4.2$ pwd
/cs/faculty/dimirza/cs16/lab03_agaucho_alily/
-bash-4.2$ 

Then you can list out your files with the ls command:

-bash-4.2$ ls
animals01.txt  animals02.txt  countDucks.cpp  sample01.cpp
-bash-4.2$ 

Finally, use the Unix cat command to list the contents of the file sample01.cpp. (The reason this command is called “cat” has nothing to do with the animal that goes “meow”. If you ask me in lecture and I’ll tell you where the name comes from.)

-bash-4.2$ cat sample01.cpp
// sample01.cpp
// by P. Conrad for CS16, Winter 2017
#include <iostream>
using namespace std;

int main() {
    // Simple for loop that counts from 1 up to n

    int n=5;

    for (int i=1; i<=n; i++) {
       cout << "i=" << i << endl;
    }
   
    return 0;
}
-bash-4.2$ 

Compile this with the command make sample01 and run it with the command ./sample01. That looks like this:

-bash-4.2$ make sample01
g++     sample01.cpp   -o sample01
-bash-4.2$ ./sample01 
i=1
i=2
i=3
i=4
i=5
-bash-4.2$ 

If you get that output, you are ready for the next step.

Step 5: Copy sample01.cpp to myProg01.cpp and make changes

Now we’ll use the the Unix command cp oldfile newfile which copies files, to copy from sample01.cpp to a new file called myProg01.cpp, as shown here:

-bash-4.2$ cp sample01.cpp myProg01.cpp
-bash-4.2$ ls
animals01.txt  countDucks.cpp  sample01
animals02.txt  myProg01.cpp    sample01.cpp
-bash-4.2$ 

Now you have a new file called myProg01.cpp that is a copy of sample01.cpp. Open it up in a text editor and make the following changes:

  1. Change the comment at the top of the file so that it says // myProg01.cpp
  2. Change the second line of the file to be of the format “Author: your name”
  3. Change the comment within the code to “Simple that counts down from n to 1”

  4. Change the for loop as follows:

Compile and run myProg01.cpp with these changes. The output should look like this:

5 4 3 2 1

You are now ready to move to the next step.

Tip: If you make a mistake that results in an “infinite loop”, i.e. the window is just scrolling by without stopping, you can use CTRL+C (hold down Control and type C) to stop the program.

Step 6: Reading from input files and counting ducks

The next files we are going to look at are not C++ code, but rather data files.

Use the “cat” command to look at the contents of animals01.txt and animals02.txt. You should get results like these:

-bash-4.2$ cat animals01.txt 
duck
duck
goose
-bash-4.2$ cat animals02.txt
duck
duck
goose
duck
duck
cow
duck
duck
dog
-bash-4.2$ 

The next program we are going to look at will read input from files such as these. It is called countDucks.cpp and it will simply count the number of ducks in each file.

Before you look at the code, try compiling the program and running it, because this will help you understand what the program is trying to do. Compile with:

-bash-4.2$ make countDucks
g++     countDucks.cpp   -o countDucks
-bash-4.2$ 

Then try running it with just ./countDucks. You’ll see that you get a “Usage” message. This is telling us that the program expects a “command line argument”, which is the name of the file to read:

-bash-4.2$ ./countDucks 
Usage: ./countDucks inputFile
-bash-4.2$ 

So run it again, the first time giving it animals01.txt as the filename, and the second time giving it animals02.txt as the filename:

-bash-4.2$ ./countDucks animals01.txt 
There were 2 ducks in animals01.txt
-bash-4.2$ ./countDucks animals02.txt 
There were 6 ducks in animals02.txt
-bash-4.2$ 

This code for countDucks.cpp is longer than what will fit on a single screen, so instead of using the “cat” program to list it on our terminal, I suggest opening it up in a editor to look at it. To open with emacs, this would be emacs countDucks.cpp. To open with gvim type: gvim countDucks.cpp

Read through the code, especially the comments, and try to understand what each line of code is doing. We’ll explain more about this code in lecture, but for now at least get the big picture of how the code works.

Once you’ve done that, you are ready for the next step.

Step 7: A more detailed counting program

Your job is now to copy countDucks.cpp to a file myProg02.cpp and make some changes.

First, let’s stipulate that you may assume that everything in the input file is an animal, one per line—if someone adds “potato” or “bicycle” to the file, you can just assume that potato and bicycle are now to be considered types of animals.

  1. Add a variable that will count ALL animals in the file. Give it an appropriate name and initialize it to zero.
  2. Add a variable that will count ALL animals in the file that are NOT ducks. Give it an appropriate name and initialize it to zero.
  3. Add code that will increment those counts when appropriate. It may help to know that C++ has an else clause for an if that looks like this:
   if (condition) {
     // lines of code here are 
     // executed when condition is true
   } else {
     // lines of code here are
     // executed when condition is false
   }

Note that it is NOT required for every if to have an else clause.

Also note that the braces { } are:

After making these changes, one more thing: change the lines that give the output so they look like the ones shown below.

Report for animals01.txt:
   Animal count:    3
   Duck count:      2
   Non duck count:  1
Report for animals02.txt:
   Animal count:    9
   Duck count:      6
   Non duck count:  3

It is IMPORTANT to be EXACT since the submit.cs system will compare your output with the expected output character-by-character. The spacing MATTERS! You can add extra spaces at the beginning and end of the string literals for " Animal count: " and " Duck count: " so that the spacing comes out right and matches the expected output below. I’m not going to tell you how many; you’ll have to figure that out.

Note that we will also test your program on other input files, so you should too. Use the cp command to copy animals02.txt to animals03.txt and add some ducks and some other animals. Count by hand, and make sure that the count when you run your program matches what is expected.

When you are satisfied that the count is correct and that format of the output is precise, you are ready to submit your code for grading.

Note that the submit.cs system may give you feedback on whether your code is correct or not. You can use this feedback to resubmit as many times as you need up until the deadline for the assignment. So if it doesn’t work on the first try, don’t panic—just fix your code.

Step 8: Turn in your code

Once you have joined the course, you should be able to submit your code by typing the sequence of commands shown below in a terminal window on CSIL:

-bash-4.2$ cd ~/cs16/lab03_agaucho_alily
-bash-4.2$ cd ~/cs16/lab03_agaucho_alily
-bash-4.2$ ls
animals01.txt  countDucks.cpp  myProg02      sample01
animals02.txt  myProg01.cpp    myProg02.cpp  sample01.cpp
-bash-4.2$ 
-bash-4.2$ ~submit/submit -p 813 myProg01.cpp myProg02.cpp

The number 813 is the “project number” specfic to CMPTGCS1A cs16_lab03 for our class section.

What a successful turnin looks like

[dimirza@csil-02 lab03_agaucho_alily]$ pwd
/cs/faculty/dimirza/cs16/lab03_agaucho_alily
[dimirza@csil-02 lab03_agaucho_alily]$ ls
animals01.txt  countDucks      myProg01      myProg02      README.md
animals02.txt  countDucks.cpp  myProg01.cpp  myProg02.cpp  sample01.cpp
[dimirza@csil-02 lab03_agaucho_alily]$ ~submit/submit -p 813 myProg01.cpp myProg02.cpp
logged in as dimirza@cs.ucsb.edu
Sending myProg01.cpp
Sending myProg02.cpp
Submission successful
Results will be available at: https://submit.cs.ucsb.edu/submission/226377
[dimirza@csil-02 lab03_agaucho_alily]$

Once you have done the submit, go to the link shown. (Yours will have a different number from the one given above.)

What you’ll see on submit.cs if the submission was successful

If you see the following, it means you passed all the tests. A successful submission will get 120 points. If you find any thing you want to change, you may resubmit as many times as needed up until the deadline.

Passed Tests

Test GroupTest NameValue
myProg01

myProg01

30
myProg02

./myProg02 animals01.txt

30
myProg02

./myProg02 animals02.txt

30
myProg02

myProg02 empty command line

30

What you might see if there were errors

If instead, you see someting like this, it means you didn’t pass some tests:

error

If you are seeing something like that, try to understand the feedback you are getting before asking questions. Then if you are still stuck, ask for help. For example, the output above shows that the student forgot the “colon” (:) in the output.

Evaluation and Grading

To earn full credit for this lab (120 pts) you should have successfully submitted both myProg01.cpp and myProg02.cpp via submit.cs and received a “green” indication that it passed all the tests for expected output.

Passed Tests

Test GroupTest NameValue
myProg01

myProg01

30
myProg02

./myProg02 animals01.txt

30
myProg02

./myProg02 animals02.txt

30
myProg02

myProg02 empty command line

30
  1. Indentation is neat, consistent and follows good practice (see below)
  2. Variable name choice: variables should have sensible names. More on indentation: Your code should be indented neatly. Code that is inside braces should be indented, and code that is at the same “level” of nesting inside braces should be indented in a consistent way. Follow the examples from lecture, the sample code, and from the textbook.

Note: Regarding asking for “extensions”: Extensions are granted only in TRUE emergencies (i.e. matters of life and death beyond the students control) and require PRIOR APPROVAL of the instructor AS SOON as the circumstances are known. (Not weeks later “after the fact” approval.) There must be documentation of some extra-ordinary circumstance beyond the students control (death/hospitalization of an immediate family member requiring emergency travel, hospitalization of student herself/himself), serious illness requiring medical intervention, etc. Do not ask for extensions because of “heavy work load in my other courses”, or other reasons that may “feel” like an emergency to you, but are in fact, routine for all students.

Please the page https://submit.cs.ucsb.edu/form/project/813/submission, or the Unix shell commmand listed at that link (e.g. ~submit/submit -p nnn file1 file2 ... filen) to submit your assignment rather than the command listed in the instructions.