发布网友 发布时间:2022-04-23 04:28
共4个回答
热心网友 时间:2023-10-14 19:44
#include<stdlib.h>
string wor = "tbs"
int a = 12
int b = 11
wor=wor+ itoa(a)+itoa(b)
string可能也有format类方法吧
热心网友 时间:2023-10-14 19:44
string word = "tbs&11&12&"
这种不是整型和字符型常量相加,这是在字符串后面增加字符.
还有一个概念要弄清楚,常量是不能相加赋值的.
热心网友 时间:2023-10-14 19:45
MFC工程中是这样的 :
CString str = "tbs";
int a = 12 ;
int b = 11 ;
CString str1;
str1.Format("%s&%d&%d", str, b,a);
要输出的话 随便show个对话框出来,加上MessageBox(str1);这句
热心网友 时间:2023-10-14 19:45
这个吗。。。