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
Lab Requirements
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
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: 68Number 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 . . .
11:59
vogon ~$ handin mhaungs Lab5-yy lab5.c
If you're done with the lab, and want a challenge, try predicting the output of this program:
/** * CPE 101 Fall 2007 * ------------------- * Program challenge: what does this print? Try to answer without * running the program, then use the program to check your answer. * * @author Kevin O'Gorman * @author Phillip Nico */ #include <stdio.h> #define SZ 10 int main() { int vals[SZ] = {0, 2, 4, 6, 8, 1, 3, 5, 7, 9}; int i; for (i = 0; i < SZ; i++) { vals[i] = vals[vals[i]]; } for (i = 0; i < SZ; i++) { printf("%d\n", vals[i]); } return 0; }
Also try this one, which is slightly different, and a bit harder.
/** * CPE 101 Fall 2007 * ------------------- * Program challenge: what does this print? Try to answer without * running the program, then use the program to check your answer. * * @author Kevin O'Gorman * @author Phillip Nico */ #include <stdio.h> #define SZ 10 int main() { int vals[SZ] = {1, 3, 5, 7, 9, 0, 2, 4, 6, 8}; int i; for (i = 0; i < SZ; i++) { vals[vals[i]] = vals[i]; } for (i = 0; i < SZ; i++) { printf("%d\n", vals[i]); } return 0; }
If that wasn't enough, here's a real challenge: write a program that plays tic-tac-toe, or that lets two people play each other. The details are up to you, since this is just for fun. It would be good if the program displayed the progress of the game, like this:
1 | 2 | 3 X | - | O --------- --------- 4 | 5 | 6 - | O | - --------- --------- 7 | 8 | 9 - | - | -
You can see how this might go by running Prof. O'Gorman's simple game written during Monday's lunch hour. It's just 173 lines of C code.
vogon $ ~kogorman/public/tic The current board is 1 | 2 | 3 - | - | - --------- --------- 4 | 5 | 6 - | - | - --------- --------- 7 | 8 | 9 - | - | - Enter a play for X: 1 The current board is 1 | 2 | 3 X | - | - --------- --------- 4 | 5 | 6 - | - | - --------- --------- 7 | 8 | 9 - | - | - Enter a play for O: 2 The current board is 1 | 2 | 3 X | O | - --------- --------- 4 | 5 | 6 - | - | - --------- --------- 7 | 8 | 9 - | - | - Enter a play for X: 5 The current board is 1 | 2 | 3 X | O | - --------- --------- 4 | 5 | 6 - | X | - --------- --------- 7 | 8 | 9 - | - | - Enter a play for O: 9 The current board is 1 | 2 | 3 X | O | - --------- --------- 4 | 5 | 6 - | X | - --------- --------- 7 | 8 | 9 - | - | O Enter a play for X: 7 The current board is 1 | 2 | 3 X | O | - --------- --------- 4 | 5 | 6 - | X | - --------- --------- 7 | 8 | 9 X | - | O Enter a play for O: 4 The current board is 1 | 2 | 3 X | O | - --------- --------- 4 | 5 | 6 O | X | - --------- --------- 7 | 8 | 9 X | - | O Enter a play for X: 3 The current board is 1 | 2 | 3 X | O | X --------- --------- 4 | 5 | 6 O | X | - --------- --------- 7 | 8 | 9 X | - | O *** X wins!