Browse Source

Added a step in exercise 2

Rafael Arce Nazario 9 years ago
parent
commit
f4d8786215
1 changed files with 8 additions and 4 deletions
  1. 8
    4
      README.md

+ 8
- 4
README.md View File

235
 
235
 
236
 ###Ejercicio 2
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
 **Instrucciones**
240
 **Instrucciones**
241
 
241
 
247
 
247
 
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.
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
 ###Ejercicio 3
254
 ###Ejercicio 3
253
 
255
 
528
 
530
 
529
 ###Exercise 2
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
 **Instructions**
535
 **Instructions**
534
 
536
 
540
 
542
 
541
 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.
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
 ###Exercise 3
549
 ###Exercise 3
546
 
550