c++中, 整型和字符型常量怎么实现相加? 然后以字符型常量输出.. 20
c++中,整型和字符型常量怎么实现相加?然后以字符型常量输出..例如,我现在有stringwor="tbs"inta=12intb=11我希望得到stringword="...
c++中, 整型和字符型常量怎么实现相加? 然后以字符型常量输出..例如,我现在有 string wor = "tbs"
int a = 12
int b = 11
我希望得到 string word = "tbs&11&12&" 这么一串字符,然后输出..
打错了..是字符串型常量.. 展开
int a = 12
int b = 11
我希望得到 string word = "tbs&11&12&" 这么一串字符,然后输出..
打错了..是字符串型常量.. 展开
4个回答
展开全部
#include<stdlib.h>
string wor = "tbs"
int a = 12
int b = 11
wor=wor+ itoa(a)+itoa(b)
string可能也有format类方法吧
string wor = "tbs"
int a = 12
int b = 11
wor=wor+ itoa(a)+itoa(b)
string可能也有format类方法吧
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string word = "tbs&11&12&"
这种不是整型和字符型常量相加,这是在字符串后面增加字符.
还有一个概念要弄清楚,常量是不能相加赋值的.
这种不是整型和字符型常量相加,这是在字符串后面增加字符.
还有一个概念要弄清楚,常量是不能相加赋值的.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
MFC工程中是这样的 :
CString str = "tbs";
int a = 12 ;
int b = 11 ;
CString str1;
str1.Format("%s&%d&%d", str, b,a);
要输出的话 随便show个对话框出来,加上MessageBox(str1);这句
CString str = "tbs";
int a = 12 ;
int b = 11 ;
CString str1;
str1.Format("%s&%d&%d", str, b,a);
要输出的话 随便show个对话框出来,加上MessageBox(str1);这句
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个吗。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询