mac下xcode用c++怎样创建txt文件
#include<iostream>#include<fstream>usingnamespacestd;intmain(){charhello[20];cin.get(...
#include<iostream>
#include<fstream>
usingnamespacestd;
int main()
{
char hello[20];
cin.get(hello,20);
ofstream outfile; outfile.open("hello.txt");
if(!outfile)
{
cerr<<"open f1.txt error!\n";
return0;
}
cout<<"file opened";
outfile<<"hello";
return0;
}
为什么我找不到hello.txt文件?
高手来帮我看看吧,谢谢了。 展开
#include<fstream>
usingnamespacestd;
int main()
{
char hello[20];
cin.get(hello,20);
ofstream outfile; outfile.open("hello.txt");
if(!outfile)
{
cerr<<"open f1.txt error!\n";
return0;
}
cout<<"file opened";
outfile<<"hello";
return0;
}
为什么我找不到hello.txt文件?
高手来帮我看看吧,谢谢了。 展开
展开全部
ofstream outfile; outfile.open("hello.txt");
路径在你的工程文件里面,你在工程文件里面的文件DEBUG里面,找找。
路径在你的工程文件里面,你在工程文件里面的文件DEBUG里面,找找。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ofstream outfile; outfile.open("hello.txt");
路径在你的工程文件里面,你在工程文件里面的文件DEBUG里面。
路径在你的工程文件里面,你在工程文件里面的文件DEBUG里面。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
给一个绝对的文件地址看看!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询