1.使用c++中system(“pause”)
例子如下:
#include<iostream>
#include<stdlib.h>
using namespace std;
void main(void)
{
cout<<"Hello world "<<endl;
system("pause");
return 0;
}
2.使用c++中内联函数
例子如下:
#include<iostream>
#include<stdlib.h>
using namespace std;
inline void keep_window_open(){char ch;cin>>ch;};
void main(void)
{
cout<<"Hello world "<<endl;
keep_window_open();
return 0;
}
此方法是c++之父
Bjarne Stroustrup推荐使用的