场景:点击 "运行WINDOWS调试器" 后闪现就没了 解决:==加入下边的两行黑粗字体 #include "stdafx.h" #include iostream #includestdlib.h void main() { std::cout "ok"std::endl; system("PAUSE"); }
场景:点击 "运行WINDOWS调试器" 后闪现就没了
解决:==>加入下边的两行黑粗字体
#include "stdafx.h"
#include <iostream>
#include<stdlib.h>
void main()
{
std::cout <<"ok"<<std::endl;
system("PAUSE");
}