c++中, 整型和字符型常量怎么实现相加? 然后以字符型常量输出..

发布网友 发布时间: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

这个吗。。。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com