码迷,mamicode.com
首页 > 编程语言 > 详细

c++文件流

时间:2018-04-09 13:18:11      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:iostream   c++   out   AC   bsp   \n   names   ios   space   

比cin快很多

#include <iostream>
#include<fstream>
using namespace std;
ifstream fin("aplusb.in");
ofstream fout("aplusb.out");

int main()
{
int a,b;

while(fin>>a>>b)
fout<<a+b<<"\n";
return 0;
}

 

这里没有学过,一片空白,看到书上感觉很奇妙

c++文件流

标签:iostream   c++   out   AC   bsp   \n   names   ios   space   

原文地址:https://www.cnblogs.com/soberzml/p/8758815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!