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

string初始化

时间:2018-10-01 14:33:08      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:ret   ios   input   nbsp   ring   namespace   get   please   end   

#include<iostream>

#include<string>

using namespace std;

int main(){

         string name;

         cout<<"Please input your name:"<<endl;

         getline(cin,name);

         if(name.empty()){

                   cout<<"input is null.."<<endl;

                   system("pause");

                   return 0;

         }

         if(name=="imooc"){

                   cout<<"you are a administrate"<<endl;

         }

         cout<<"hello"+name<<endl;

         cout<<"your name length"<<name.size()<<endl;

         cout<<"your name first letter is:"<<name[0]<<endl;

         system("pause");

         return 0;

}

string初始化

标签:ret   ios   input   nbsp   ring   namespace   get   please   end   

原文地址:https://www.cnblogs.com/huoyuying/p/9734606.html

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