码迷,mamicode.com
首页 > 其他好文 > 详细

演示使用string对象

时间:2016-03-12 01:36:29      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<string>

using namespace std;
void main()
{
    string str1("i am here!");
    string str2="where are you?";
    cout << str1[0] << str1[9] << "," << str1 << endl;
    cout << str2[0] << str2[13] << "," << str2 << endl;
    cout << "please input you name:";
    cin >> str1;
    cout << str1 << endl;
    cout << "length of the name is :" << str1.size() << endl;
    cout << str2 + " " + str1 << endl;
}

输出结果

技术分享

 

end!

演示使用string对象

标签:

原文地址:http://www.cnblogs.com/changbo/p/5267762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!