标签:http style div code c size t sp color int 文件
在做题目的过程当中,我们需要在本机上调试,当然我们可以把测试用例一遍一遍粘贴复制,也经常会遇到测试用例很多的时候,输入和输出混了,还要去找输出和题目当中的对照。另外,有的时候题目给的测试用例太少,需要自己或者队友给想几个临界条件,自己动手多添加几个测试用例,每测一遍都要动手输入的话麻烦又浪费时间。这时候freopen()上场了。
#include <cstdio>
#include <iostream>
using namespace std;
int main()
{
int a,b;
freopen("in.txt","r",stdin); //输入重定向,输入数据将从in.txt文件中读取
freopen("out.txt","w",stdout); //输出重定向,输出数据将保存在out.txt文件中
while(cin>> a
>> b)
cout<< a+b <<endl; //
注意使用endl
fclose(stdin);//关闭文件
fclose(stdout);//关闭文件
return 0;
}
【技巧】freopen()函数在ACM中的应用,布布扣,bubuko.com
标签:http style div code c size t sp color int 文件
原文地址:http://www.cnblogs.com/zhaokongnuan/p/d58369bce9e64f54f132f1ee33876836.html