C Caicheng Unregistered / Unconfirmed GUEST, unregistred user! 2000-04-22 #1 请问在C++中如何用messagebox来显示WORD or INT之类的变量?<br>用delphi的写法是:<br>showmessage(inttostr(??));<br> (??这里表示变量)<br>那么用 C++呢?
请问在C++中如何用messagebox来显示WORD or INT之类的变量?<br>用delphi的写法是:<br>showmessage(inttostr(??));<br> (??这里表示变量)<br>那么用 C++呢?
S snowtree Unregistered / Unconfirmed GUEST, unregistred user! 2000-04-22 #2 用wprintf,或 sprintf 将其复制到一buffer 中<br>, 好象是wprintf(buffer,"%d",i).