#include <iostream>
#include <set> using namespace std; int main()
{
string line;
getline(cin,line,'-'); //getline用法
cout<<line<<endl;
cout<<line.size()<<endl; //<iostream>中包含<string>
cout<<line[]<<endl; //访问数组中的字符 return ;
}
相关文章
- c++中string类的详解
- c++ 中的sort用法
- C++中cin、cin.get()、cin.getline()、getline()、gets()等函数的用法----细节决定成败 (sort用法)
- 在TreeWidget中增加右键菜单功能 以及TreeWidget的基本用法
- 13 Basic Cat Command Examples in Linux(转) Linux中cat命令的13中基本用法
- MySQL中case when的基本用法总结
- Java String类中的intern()方法
- C++中map的基本操作和使用;
- c++与java中子类中调用父类成员的方法
- (转)Linux中显示空闲内存空间的free命令的基本用法