gpt4 book ai didi

c++ - C++读取多个文件

转载 作者:行者123 更新时间:2023-11-27 22:32:34 24 4
gpt4 key购买 nike

我正在尝试读取两个文件“ListEmployees01.txt”和“ListEmployees02.table”。但是该程序只读取“ListEmployees01.txt”文件,cout 只是来自该文件。

#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <string>
using namespace std;

int main()
{
freopen("ListEmployees01.txt", "r", stdin);
string s;
while (getline(cin, s))
cout << s<<endl;
fclose(stdin);
freopen("ListEmployees02.table", "r", stdin);
while (getline(cin, s))
cout << s<<endl;

}

最佳答案

您可以使用 std::ifstream而不是改变 std::cin 的行为。

关于c++ - C++读取多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59135866/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com