1. 程式人生 > >C++重定向

C++重定向

#define LOCAL

int main()
{
    #ifdef LOCAL
        freopen("input.txt","r",stdin);
        freopen("output.txt","w",stdout);
    #endif
    return 0;
}