ev-C++ 请问怎样让显示结果屏幕不消失?

来源:互联网 发布:智能手机自动截图软件 编辑:程序博客网 时间:2024/04/26 21:00

#include <iostream.h>
#include <stdlib.h>

int main()
{     cout<<"hello";

      system("PAUSE");
      return 0;
}