Lab 5 -- Loops, Arrays, and Searching

CPE101

Winter 2008

 

Updates and Corrections

 

 

Due Date:

 

By the end of your last lab of week 5 (unless your instructor tells you otherwise).

 

Objectives

 

 

Overview

 

An array is a collection of 2 or more adjacent memory cells that are associated with a with a common symbolic name.  In this lab, you will practice declaring arrays, filling an array with values, passing an array as a parameter, and searching through an array for a particular value.  Often, loops are used to access and process the elements of an array.

 

 

Lab Requirements 

 

  1. In a file called lab5.c write a program that prompts for and reads in test scores.  You may assume that valid test scores will be integer values between 0 and 100.  The program will allow a maximum of 35 scores to be read in.  Use a preprocessor directive to define this value.  User input will be complete when either 35 scores have been read in, or until the user enters a -1 for the test score.  When all of the test scores have been entered, the program will print out the scores.  Use a while or do-while loop to read in the values.  Be sure not to allow more than 35 scores to be entered.  Use a for loop to print out the values.  If you get tired of typing in the values by hand, create a file of the input values and use redirection from the command line.  Here is a sample run:

Enter test score 1: 88
Enter test score 2: 67
Enter test score 3: 74
Enter test score 4: 94
Enter test score 5: 79
Enter test score 6: 56
Enter test score 7: -1

Number of scores entered: 6
Test scores entered     : 88 67 74 94 79 56

  1. Add a function to the program above that will compute the average score.  The function will take 2 parameters: the array of scores, and the number of scores entered.  The function will return the average score as a double value.  Use a for loop in this function.  The function will not perform any I/O.  Here is a sample run:

Enter test score 1: 88
Enter test score 2: 67
Enter test score 3: 74
Enter test score 4: 94
Enter test score 5: 79
Enter test score 6: 56
Enter test score 7: -1

Number of scores entered: 6
Test scores entered     : 88 67 74 94 79 56
Average test score      : 76.3
 
  1. Add a function to the program above that will search through the array of test scores to see if a particular value is present in the array of scores.  The function will take 3 parameters: the array of scores, the number of scores entered, and the value to search for.  If the value is present in the array, the function will return the index of the first occurrence of the value.  If the value is not present, the function will return negative one.  If the value is found in the array, do not continue to search the array - stop the search.  Use a while loop in this function.  The function will not perform any I/O.  Here are some sample runs:

    Run 1:
    Enter test score 1: 88
    Enter test score 2: 67
    Enter test score 3: 74
    Enter test score 4: 94
    Enter test score 5: 79
    Enter test score 6: 67
    Enter test score 7: -1
    Enter test score to search for: 67

Number of scores entered: 6
Test scores entered     : 88 67 74 94 79 67
Average test score      : 78.2
The score 67 first occurs at index 1.

Run 2:
Enter test score 1: 88
Enter test score 2: 67
Enter test score 3: 74
Enter test score 4: 94
Enter test score 5: 79
Enter test score 6: 67
Enter test score 7: -1
Enter test score to search for: 68

Number of scores entered: 6
Test scores entered     : 88 67 74 94 79 67
Average test score      : 78.2
The score 68 does not occur in the array.

 

Handing in Your Source Electronically . . .

  1. If necessary, move your source (lab5.c) to vogon.

 

  1. Log on to vogon via some terminal somewhere.

 

  1. Change directory (cd), as necessary, to the directory where your source file(s) are.

 

  1. Compile and test your source on vogon using the required compiler flags (-Wall --ansi --pedantic)

 

  1. Use the handin command being sure to replace the yy with your lecture section number.

 

11:59 vogon ~$ handin mhaungs Lab5-yy lab5.c

 

Challenges