google code jam 如何提交---如何读取.in如何保存.out

#include<iostream>
using namespace std;
int main()
{
	freopen("D:\\a.in","r",stdin);
	freopen("D:\\b.out","w",stdout);
	/********************************************/
	int c;
	cin>>c;
	while(c--)
	{
		char temp;
		cin>>temp;
		cout<<temp<<endl;
	}
	/********************************************/
	fclose(stdin);
	fclose(stdout);
	return 0;
}

就是这样加上那两句就可以其余同

你可能感兴趣的:(google code jam 如何提交---如何读取.in如何保存.out)