文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C++程序习题-使用string进行字符连接[1.14]

C++程序习题-使用string进行字符连接[1.14]

时间:2010-11-09  来源:chengxiaopeng

    编写一程序,将两个字符串连接起来,结果取代第一个字符串。要求用string方法。

#include <iostream>
#include <string>
using namespace std;

int main()
{
    string str1,str2;
    cin >> str1;
    cin >> str2;
    
    cout << "str1:" << str1 << endl;
    cout << "str2:" << str2 << endl;
    str1 = str1 + str2;
    cout << "contact result :" << str1 << endl;
    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载