C++文件操作的HelloWorld

下面是一个C++文件操作的入门,可以很容易的参照模仿。

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

void main(void)
{
	//输出文件
	ofstream outfile("out.txt");
	//输入文件
	ifstream infile("in.txt");
	//判断是否能打开输入文件
	if(!infile)
	{
		cerr<<"error: unable to open input file!\n";
		return;
	}
	//判断是否能打开输出文件
	if(!outfile)
	{
		cerr<<"error: unable to open output file!\n";
		return;
	}
	string word;
	//循环读取并输出
	while(infile>>word)
	{
		outfile<<word<<" ";
		cout<<word<<" ";
	}
}


你可能感兴趣的:(C++文件操作的HelloWorld)