首页 > 代码库 > TCPL---1.1.1---2014/8/29

TCPL---1.1.1---2014/8/29

VS2010 写控制台程序,一闪而过,解决办法之一:

#include <iostream>
using namespace std;
int main()
{
 cout<<"Hello,new world!"<<endl;

 system("pause");     //添加此行,让系统暂停
 return 0;
}

TCPL---1.1.1---2014/8/29