c++ console application中要在MessageBox(NULL,"","提示信息",MB_OK);弹出数字怎么办
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ console application中要在MessageBox(NULL,"","提示信息",MB_OK);弹出数字怎么办相关的知识,希望对你有一定的参考价值。
我试了,比如int a=10;MessageBox(NULL,(LPSTR)a,"提示信息",MB_OK);这样没用,不弹出任何提示,该怎么做,包含string。h也没用
#include <iostream>#include <windows.h>
using namespace std;
int main(int argc, char *argv[])
char buf[100];
int a = 123;
sprintf(buf, "%d", a);
MessageBox(NULL, buf,"提示信息",MB_OK);
return 0;
参考技术A 整型数不能像你那样(LPSTR)a转换成字符串的
可以用wsprintf,sprintf,itoa这些函数转换 参考技术B 应该需要相应的MFC头文件吧。比如<stdafx.h>试试吧。或者还需要一些DLL文件。
以上是关于c++ console application中要在MessageBox(NULL,"","提示信息",MB_OK);弹出数字怎么办的主要内容,如果未能解决你的问题,请参考以下文章
C++在建工程时,应该选择Win32 Application还是Win32 Console Application?它两之
Win32 Console Application和cpp 。请问在vc++中写程序,新建Win32 Console Application和新建一个cpp的区
vc新建工程Win32 Application和Win32 Console Application区别
Win32 Application和Win32 Console Application区别