C++怎么读取TXT文本中的信息和写入信息到TXT文本中去
读1.TXT文本中的信息并把字符串”123”写入到2.TXT中去,要完整并能运行的代码,谢谢啦...
读1.TXT文本中的信息并把字符串”123”写入到2.TXT中去,要完整并能运行的代码,谢谢啦
展开
4个回答
展开全部
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
void main()
{
//读取1.txt全部内容
ifstream ifs("1.txt");//如果需要,请修改文件路径
if(!ifs)
{
cout<<"文件打开失败!";
return;
}
char ch[100];
while (!ifs.eof())
{
ifs.getline(ch,100);
cout<<ch<<endl;
}
//字符串“123”写入2.txt
char a[]="123";
ofstream ofs("2.txt");
ofs<<a;
}
#include <fstream>
#include <string>
using namespace std;
void main()
{
//读取1.txt全部内容
ifstream ifs("1.txt");//如果需要,请修改文件路径
if(!ifs)
{
cout<<"文件打开失败!";
return;
}
char ch[100];
while (!ifs.eof())
{
ifs.getline(ch,100);
cout<<ch<<endl;
}
//字符串“123”写入2.txt
char a[]="123";
ofstream ofs("2.txt");
ofs<<a;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include
<iostream>
#include
<fstream>
#include
<string>
using
namespace
std;
void
main()
{
//读取1.txt全部内容
ifstream
ifs("1.txt");//如果需要,请修改文件路径
if(!ifs)
{
cout<<"文件打开失败!";
return;
}
char
ch[100];
while
(!ifs.eof())
{
ifs.getline(ch,100);
cout<<ch<<endl;
}
//字符串“123”写入2.txt
char
a[]="123";
ofstream
ofs("2.txt");
ofs<<a;
}
<iostream>
#include
<fstream>
#include
<string>
using
namespace
std;
void
main()
{
//读取1.txt全部内容
ifstream
ifs("1.txt");//如果需要,请修改文件路径
if(!ifs)
{
cout<<"文件打开失败!";
return;
}
char
ch[100];
while
(!ifs.eof())
{
ifs.getline(ch,100);
cout<<ch<<endl;
}
//字符串“123”写入2.txt
char
a[]="123";
ofstream
ofs("2.txt");
ofs<<a;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include
#include
#include
using
namespace
std;
void
main()
{
//读取1.txt全部内容
ifstream
ifs("1.txt");//如果需要,请修改文件路径
if(!ifs)
{
cout<<"文件打开失败!";
return;
}
char
ch[100];
while
(!ifs.eof())
{
ifs.getline(ch,100);
cout<
评论
0
0
加载更多
#include
#include
using
namespace
std;
void
main()
{
//读取1.txt全部内容
ifstream
ifs("1.txt");//如果需要,请修改文件路径
if(!ifs)
{
cout<<"文件打开失败!";
return;
}
char
ch[100];
while
(!ifs.eof())
{
ifs.getline(ch,100);
cout<
评论
0
0
加载更多
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
通过Istream 和Ostream 进行读写操作
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询