|
@@ -235,7 +235,7 @@ El primer paso en esta experiencia de laboratorio es familiarizarte con las func
|
235
|
235
|
|
236
|
236
|
###Ejercicio 2
|
237
|
237
|
|
238
|
|
-En este ejercicio modificarás algunas de las funciones pre-definidas para que desplieguen solo algunas de las películas en la base de datos, desplieguen solo parte de la información contenida, o que desplieguen la información en un formato específico.
|
|
238
|
+En este ejercicio modificarás la función `main` y algunas de las funciones pre-definidas para que desplieguen solo algunas de las películas en la base de datos, desplieguen solo parte de la información contenida, o que desplieguen la información en un formato específico.
|
239
|
239
|
|
240
|
240
|
**Instrucciones**
|
241
|
241
|
|
|
@@ -247,7 +247,9 @@ En este ejercicio modificarás algunas de las funciones pre-definidas para que d
|
247
|
247
|
|
248
|
248
|
4. Para la película en la parte 3 de este ejercicio, modifica la función `main` para que solo despliegue el nombre y el rating de la película.
|
249
|
249
|
|
250
|
|
-5. Para la película en la parte 3, modifica la función `main` para que, utilizando `getMovieInfo`, despliegue el nombre, el rating, el año y el género de la película en una sola línea. Ayuda: nota que la función `getMovieInfo` tiene parámetros por referencia.
|
|
250
|
+5. Modifica la función `getMovieInfo` que se encuentra en el archivo `movie.cpp` para que también reciba por referencia el nombre de la película y le asigne un valor. Recuerda que también debes modificar el prototipo de esta función que se encuentra en `movie.h`.
|
|
251
|
+
|
|
252
|
+6. Para la película en la parte 3, modifica la función `main` para que, utilizando `getMovieInfo`, despliegue el nombre, el rating, el año y el género de la película en una sola línea. Ayuda: nota que la función `getMovieInfo` tiene parámetros por referencia.
|
251
|
253
|
|
252
|
254
|
###Ejercicio 3
|
253
|
255
|
|
|
@@ -528,7 +530,7 @@ The first step in this lab experience is to familiarize yourself with the functi
|
528
|
530
|
|
529
|
531
|
###Exercise 2
|
530
|
532
|
|
531
|
|
-In this exercise you will modify 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.
|
|
533
|
+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.
|
532
|
534
|
|
533
|
535
|
**Instructions**
|
534
|
536
|
|
|
@@ -540,7 +542,9 @@ In this exercise you will modify some of the pre-defined functions so that they
|
540
|
542
|
|
541
|
543
|
4. For the movie in part 3 of this exercise, add the necessary code to the `main` function so that the program displays the name and the rating of the movie.
|
542
|
544
|
|
543
|
|
-5. 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.
|
|
545
|
+5. Modify the `getMovieInfo` function in the file `movie.cpp` so that it receives an additional parameter by reference to which the name of the movie will be assigned. Remember that you must also modify the function's prototype in `movie.h`.
|
|
546
|
+
|
|
547
|
+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.
|
544
|
548
|
|
545
|
549
|
###Exercise 3
|
546
|
550
|
|