#define LOCAL
int main()
{
#ifdef LOCAL
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
return 0;
}
C++重定向
最新推荐文章于 2024-11-13 11:22:36 发布
#define LOCAL
int main()
{
#ifdef LOCAL
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
return 0;
}

被折叠的 条评论
为什么被折叠?