C++中怎样把两个字符连接起来输出?

2024-12-27 05:51:07
推荐回答(1个)
回答1:

char 型的只能放一个字母
你这个需要用string
string s1="A";
string s2="B";
string S3=s1+s2;