1 2 3 4 5 6 7 8 9 10 11 | void init() { AllocConsole(); freopen("CONIN$", "r+t", stdin); freopen("CONOUT$", "r+t", stdout); } void fini() { // FreeConsole(); } |
人,技术,生活。
1 2 3 4 5 6 7 8 9 10 11 | void init() { AllocConsole(); freopen("CONIN$", "r+t", stdin); freopen("CONOUT$", "r+t", stdout); } void fini() { // FreeConsole(); } |