//重定向版
#include <iostream>
#include <stdio.h>//包含freopen函数
using namespace std;
int main()
{
freopen("input.in","r",stdin);//必写,如果input.in不在连接后的exe的目录,需要指定路径如D:\\input.in
freopen("output.out","w",stdout);//必写,同上
int a;
cin>>a;
cout<<a<<endl;
cout<<"hello world,hello new york!";
return 0;
}
//fopen版(c语言遗留下来的输入输出),这里的输入输出只能用fscanf和fprintf,不能用cin和cout
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
FILE *fin,*fout;//必写
fin=fopen("input.in","rb");//必写,如果input.in不在连接后的exe的目录,需要指定路径如D:\\input.in
fout=fopen("output.out","wb");//必写,同上
int a;
fscanf(fin,"%d",&a);//输入必写
fprintf(fout,"%d",a);//输出必写
fprintf(fout,"\r\n"); //注意了,fprintf的换行要这样写:\r\n
fprintf(fout,"byebye new yor,hello prowence!");//必写
fclose(fin);//必写
fclose(fout);//必写
return 0;
}