首页 > 其他 > 详细

文件输入输出

时间:2016-01-27 22:52:40      阅读:223      评论:0      收藏:0      [点我收藏+]
#define LOCAL
#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <stack>
using namespace std;

#define mem(a,b) memset(a,b,sizeof(a))
#define pf printf
#define sf scanf
#define debug printf("!\n")
#define INF 10000
#define MAX(a,b) a>b?a:b
#define blank pf("\n")
#define LL long long

#ifdef LOCAL
     freopen("data.in","r",stdin);
     freopen("data.out","w",stdin);
#endif // LOCAL

重定向

 

int main()
{
     File *fin,*fout;
     fin = fopen("data.in","rb");
     fout = fopen("data.out","wb");
     int m;
     fsf("%d",&m);
     fpf("%d\n",m);
     fclose(fin);
     fclose(fout);
     return 0;
}

标准

 

文件输入输出

原文:http://www.cnblogs.com/qlky/p/5164788.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!