gpt4 book ai didi

c++ - 为什么我的 fstream 没有创建 data1.txt 文件?

转载 作者:行者123 更新时间:2023-11-30 02:24:52 26 4
gpt4 key购买 nike

#include <iostream>
#include <fstream>

using namespace std;

int main()
{
fstream dataFile("data1.txt");
if(dataFile.fail())
{
cout<<"Unable to open file"<<endl;
exit(1);
}
double value = 0;
while(dataFile >> value)
cout<<"Read: "<< value << endl;
dataFile.close();
}

这个程序的输出总是无法打开文件。请告诉我为什么我无法制作文件。我使用的是 mac book pro(IED:coderunner 2)不知道这是否会有所不同

最佳答案

根据您的 IDE,程序可能不会在您认为的位置运行。尝试将您的文本文件放在项目层次结构中的不同位置。它可能不在正确的位置。

关于c++ - 为什么我的 fstream 没有创建 data1.txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45091508/

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