vc6 读取txt中的数字
时间: 2024-05-05 11:22:06 浏览: 125
vc读取txt文件的数据
4星 · 用户满意度95%
你可以使用 C++ 的标准库中的 ifstream 类来读取 txt 文件中的数字。以下是一个简单的示例代码:
```c++
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
ifstream infile("data.txt"); // 打开 txt 文件
int num;
while (infile >> num) { // 按行读取 txt 文件中的数字
cout << num << endl; // 输出读取到的数字
}
infile.close(); // 关闭 txt 文件
return 0;
}
```
在这个示例代码中,我们使用了 ifstream 类来打开名为 data.txt 的 txt 文件,并使用 while 循环逐行读取文件中的数字。每读取到一个数字,就会使用 cout 输出它,并使用 endl 换行。最后,我们使用 close() 方法关闭 txt 文件。
阅读全文