messagebox_app.cpp
上传用户:whps2004
上传日期:2021-10-25
资源大小:1791k
文件大小:0k
源码类别:

控制台编程

开发平台:

Visual C++

  1. #include <windows.h>
  2. #include <sstream>
  3. using namespace std;
  4. int main()
  5. {
  6.     stringstream ss;
  7.     ss << 8 << " - Hello World!";
  8.     MessageBox(0, ss.str().c_str(), ss.str().c_str(), 0);
  9.     return 0;
  10. }