// posji187900284560.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <windows.h>
int main(int argc, char* argv[])
{
int nSelect=::MessageBox(NULL,"这是我的第一个提示框内容,欢迎加微信18790284560一起学习","提示框按钮",MB_OKCANCEL);
if(nSelect==IDOK)
printf("用户选择了“确定”按钮\n");
else
printf("用户选择了“取消”按钮\n");
return 0;
}