|
@@ -238,7 +238,7 @@ The first step in this laboratory experience is to familiarize yourself with the
|
238
|
238
|
<br>
|
239
|
239
|
|
240
|
240
|
|
241
|
|
-### Exercise 2 - Call and modify fuctions
|
|
241
|
+### Exercise 2 - Call and modify functions
|
242
|
242
|
|
243
|
243
|
In this exercise you will modify the `main` function and some of the pre-defined functions so that they display only certain movies from the database, display only part of the information, or display the information in a specific format.
|
244
|
244
|
|
|
@@ -256,7 +256,7 @@ In this exercise you will modify the `main` function and some of the pre-defined
|
256
|
256
|
|
257
|
257
|
6. For the movie in part 3, add the necessary code to the `main` function so that, using `getMovieInfo`, it displays the name, rating, year and the genre of the movie in one line. Hint: note that the function `getMovieInfo` has parameters that are passed by reference.
|
258
|
258
|
|
259
|
|
-### Exercise 3 - Define and implement fucntions
|
|
259
|
+### Exercise 3 - Define and implement functions
|
260
|
260
|
|
261
|
261
|
The functions whose prototypes are in `movie.h` are implemented in the file `movie.cpp`. In this exercise you will use the files `movie.h`, `movie.cpp`, and `main.cpp` to define and implement additional functions. As you implement these functions, remember to use good programming techniques and document your program.
|
262
|
262
|
|