1 #include<iostream> 2 using namespace std; 3 AllocConsole(); 4 freopen("CONIN$", "r+t", stdin); // 重定向 STDIN 5 freopen("CONOUT$", "w+t", stdout); // 重定向STDOUT
在最开始的初始化的地方加上这几句,然后就会有console窗口了。
就可以直接使用 printf 的c语言的语句了
1 #include<iostream> 2 using namespace std; 3 AllocConsole(); 4 freopen("CONIN$", "r+t", stdin); // 重定向 STDIN 5 freopen("CONOUT$", "w+t", stdout); // 重定向STDOUT