文件输入输出

二次信任 提交于 2020-01-17 01:37:01
#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;
}

标准

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!