浏览代码

README-en.md edited online with Bitbucket

父节点
当前提交
fedb935b41
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      README-en.md

+ 1
- 1
README-en.md 查看文件

158
 This laboratory experience requires you to read data from a text file. You can skip the next section if you feel that your file reading skills are competent. Otherwise, read on... 
158
 This laboratory experience requires you to read data from a text file. You can skip the next section if you feel that your file reading skills are competent. Otherwise, read on... 
159
 
159
 
160
 
160
 
161
-C++ provides functions to read and write data to/from files.  In this laboratory experience you will be using one of the most rudimentary file input/output schemes provided in C++ to read/write from **text** files. Text files consist exclusively of ASCII characters which represent data in any of the primitive types provided by C++. Typically, the values are separated by spaces. For instance let's assume that the file `nameAge.txt` contains some data about names and ages.
161
+C++ provides functions to read and write data to/from files.  In this laboratory experience you will be using one of the most rudimentary file input/output schemes provided in C++ to read/write from text files. **Text files** consist exclusively of ASCII characters which represent data in any of the primitive types provided by C++. Typically, the values are separated by spaces. For instance let's assume that the file `nameAge.txt` contains some data about names and ages.
162
 
162
 
163
 ```
163
 ```
164
 Tomas 34
164
 Tomas 34