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