Ver código fonte

Updates README-en.md

Auto commit by GitBook Editor
Rafael Arce Nazario 8 anos atrás
pai
commit
4c86e37f2c
1 arquivos alterados com 6 adições e 2 exclusões
  1. 6
    2
      README-en.md

+ 6
- 2
README-en.md Ver arquivo

@@ -255,17 +255,21 @@ In this exercise you will modify the `main` function and some of the pre-defined
255 255
 
256 256
 #### Instructions
257 257
 
258
-1. Notice the following line in the main funcion.  
258
+1. Notice the following line in the main funcion. 
259
+ 
259 260
     ```cpp
260 261
     filemanip file("dvd_csv.txt") ;
261 262
     ```
262
-   Its purpose is to associate the object called `file` with the data file `dvd_csv.txt`. When openning a data file in a program it is often necessary to specify the file's **absolute path** to guarantee that the program finds the file regardless of where the executable is placed. 
263
+   Its purpose is to associate the object called `file` with the data file `dvd_csv.txt`. When openning a data file in a program it is often necessary to specify the file's **absolute path** to guarantee that the program finds the file regardless of where it is executed.
263 264
     
264 265
     Find out the **absolute path** of `dvd_csv.txt` and substitute it for the current `"dvd_csv.txt"` string. For example, after the change the line might look as follows:
266
+
265 267
     ```cpp
266 268
     filemanip file("/home/eip/functions-dvdinfo/dvd_csv.txt") ;
267 269
     ```
268 270
 
271
+    Compile and run the program and check if no errors ocurred. 
272
+ 
269 273
 1. Perform the following implementations in the `main` function (in the `main.cpp` file):
270 274
     * Add code so that the program displays the movies that have positions from 80 to 100.
271 275
     * Add code so that the program displays only the movies that have “forrest gump” in the title.