文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>简单的程序,C++输入输出

简单的程序,C++输入输出

时间:2010-12-11  来源:自由与蓝天

下面是一个简单的程序。它从一个名为in_file的文本文件中读取单词,然后把每个单词写到一个名为out_file的输出文件中,并且每个词之间用空格分开。

代码 #include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
    ofstream outfile("out_file.txt");
    ifstream infile("in_file.txt");
    if (!infile)
    {cerr<<"error:unable to open input file!\n";
    return -1;}
    if(!outfile)
    {cerr<<"error:unalbe to open output file!\n";
    return -2;}
    string word;
    while (infile>>word)
        outfile<<word<<' ';
    return 0;
}

 

    如是,新建一个in_file.txt,内容是“This is my file”,则目录下出现out_file.txt

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载