✔ 最佳答案
我想你是直接開你compile 出來的exe, 如果你的程式沒有standard input / 暫停指令, 行完就會自動關閉. 以下是一些解決的方法
1. 開個console, windows按開始 -> 執行 -> 打"cmd" --> drag你的exe 入去console -> Enter...咁standard output 就會在console display到
2. 在一些專寫程式的工具run, e.g. MS Visual C++ 6, MS VS.NET, MS VS 2005, TextPad,等, 嗰啲通常完之前都有句 Please enter any key to continue ...
3. 在程式完之前的一行打句
char c;
std::cin.get(c);